Message ID | 20210729212054.34327-3-lucvoo@kernel.org (mailing list archive) |
---|---|
State | Mainlined, archived |
Headers | show |
Series | small fixes for the symbolic checker | expand |
diff --git a/scheck.c b/scheck.c index c830f56a0985..d3ebddd6c2f5 100644 --- a/scheck.c +++ b/scheck.c @@ -313,6 +313,11 @@ static bool check_function(struct entrypoint *ep) break; case OP_RET: goto out; + case OP_INLINED_CALL: + case OP_DEATHNOTE: + case OP_NOP: + case OP_CONTEXT: + continue; default: fprintf(stderr, "unsupported insn: %s\n", show_instruction(insn)); goto out;