From: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> Some instructions have no effects and so can just be ignored here. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- scheck.c | 5 +++++ 1 file changed, 5 insertions(+) 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; -- 2.32.0