diff options
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-sparc.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index cf25c6f..db76560 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2016-07-19 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> + * config/tc-sparc.c (struct pop_entry): Make the type of reloc + bfd_reloc_code_real_type. + +2016-07-19 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> + * config/tc-sparc.c (pop_table): Remove sentinel. (NUM_PERC_ENTRIES): Use ARRAY_SIZE on pop_table. (md_begin): Adjust. diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c index 45b2be64..9171407 100644 --- a/gas/config/tc-sparc.c +++ b/gas/config/tc-sparc.c @@ -883,7 +883,7 @@ struct pop_entry /* The name as it appears in assembler. */ const char *name; /* The reloc this pseudo-op translates to. */ - int reloc; + bfd_reloc_code_real_type reloc; /* Flags. See F_POP_* above. */ int flags; }; |