diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-08-03 14:45:33 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-08-03 14:45:33 -0700 |
| commit | 9dee86896c5968a928e56828236af41c136bdfbd (patch) | |
| tree | 0376318b30435785433917be4eb3094f995a6c67 /tools/objtool/arch.h | |
| parent | 9ba19ccd2d283a79dd29e8130819c59beca80f62 (diff) | |
| parent | d832c0051f4e9cc7d26ef3bc6e9b662bc6a90f3a (diff) | |
Merge tag 'objtool-core-2020-08-03' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull objtool updates from Ingo Molnar:
- Add support for non-rela relocations, in preparation to merge
'recordmcount' functionality into objtool
- Fix assumption that broke under --ffunction-sections (LTO) builds
- Misc cleanups
* tag 'objtool-core-2020-08-03' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
objtool: Add support for relocations without addends
objtool: Rename rela to reloc
objtool: Use sh_info to find the base for .rela sections
objtool: Do not assume order of parent/child functions
Diffstat (limited to 'tools/objtool/arch.h')
| -rw-r--r-- | tools/objtool/arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/objtool/arch.h b/tools/objtool/arch.h index 3c5967748abb..2e2ce089b0e9 100644 --- a/tools/objtool/arch.h +++ b/tools/objtool/arch.h @@ -82,7 +82,7 @@ bool arch_callee_saved_reg(unsigned char reg); unsigned long arch_jump_destination(struct instruction *insn); -unsigned long arch_dest_rela_offset(int addend); +unsigned long arch_dest_reloc_offset(int addend); const char *arch_nop_insn(int len); |
