Skip to content

Commit 1f8ee7e

Browse files
committed
Merge tag 'objtool_urgent_for_v5.9_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull objtool fix from Borislav Petkov: "Fix noreturn detection for ignored sibling functions (Josh Poimboeuf)" * tag 'objtool_urgent_for_v5.9_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: objtool: Fix noreturn detection for ignored functions
2 parents 3d49167 + db6c6a0 commit 1f8ee7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/objtool/check.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ static int add_jump_destinations(struct objtool_file *file)
619619
if (!is_static_jump(insn))
620620
continue;
621621

622-
if (insn->ignore || insn->offset == FAKE_JUMP_OFFSET)
622+
if (insn->offset == FAKE_JUMP_OFFSET)
623623
continue;
624624

625625
reloc = find_reloc_by_dest_range(file->elf, insn->sec,

0 commit comments

Comments
 (0)