Commit 1d08b92f authored by Josh Poimboeuf's avatar Josh Poimboeuf Committed by Peter Zijlstra
Browse files

objtool: Use offstr() to print address of missing ENDBR

parent 4baae989
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -3211,9 +3211,8 @@ validate_ibt_reloc(struct objtool_file *file, struct reloc *reloc)
static void warn_noendbr(const char *msg, struct section *sec, unsigned long offset,
			 struct instruction *dest)
{
	WARN_FUNC("%srelocation to !ENDBR: %s+0x%lx", sec, offset, msg,
		  dest->func ? dest->func->name : dest->sec->name,
		  dest->func ? dest->offset - dest->func->offset : dest->offset);
	WARN_FUNC("%srelocation to !ENDBR: %s", sec, offset, msg,
		  offstr(dest->sec, dest->offset));
}

static void validate_ibt_dest(struct objtool_file *file, struct instruction *insn,