diff options
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-msp430.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 10a72d2..56146c7 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2016-02-03 Kevin Buettner <kevinb@redhat.com> + + * config/tc-msp430.h (DWARF2_ADDR_SIZE): Set to 4. + 2016-02-03 H.J. Lu <hongjiu.lu@intel.com> * NEWS: Mention new command line option -mfence-as-lock-add=yes diff --git a/gas/config/tc-msp430.h b/gas/config/tc-msp430.h index 4a02452..86c9117 100644 --- a/gas/config/tc-msp430.h +++ b/gas/config/tc-msp430.h @@ -171,3 +171,5 @@ extern bfd_boolean msp430_allow_local_subtract (expressionS *, expressionS *, se #define DWARF2_USE_FIXED_ADVANCE_PC 1 #define TC_LINKRELAX_FIXUP(seg) ((seg->flags & SEC_CODE) || (seg->flags & SEC_DEBUGGING)) + +#define DWARF2_ADDR_SIZE(bfd) 4 |