diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/bfdlink.h | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 5301696..c6b8f0b 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2015-10-22 H.J. Lu <hongjiu.lu@intel.com> + + * bfdlink.h (bfd_link_info): Add call_nop_as_suffix and + call_nop_byte. + 2015-10-07 Claudiu Zissulescu <claziss@synopsys.com> * dis-asm.h (arc_get_disassembler): Correct declaration. diff --git a/include/bfdlink.h b/include/bfdlink.h index 2ffb3d1..93abab1 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -434,6 +434,12 @@ struct bfd_link_info /* TRUE if generation of .interp/PT_INTERP should be suppressed. */ unsigned int nointerp: 1; + /* TRUE if generate a 1-byte NOP as suffix for x86 call instruction. */ + unsigned int call_nop_as_suffix : 1; + + /* The 1-byte NOP for x86 call instruction. */ + char call_nop_byte; + /* Char that may appear as the first char of a symbol, but should be skipped (like symbol_leading_char) when looking up symbols in wrap_hash. Used by PowerPC Linux for 'dot' symbols. */ |