diff options
author | Trevor Saunders <tbsaunde+binutils@tbsaunde.org> | 2016-06-27 07:38:33 -0400 |
---|---|---|
committer | Trevor Saunders <tbsaunde+binutils@tbsaunde.org> | 2016-07-19 07:50:38 -0400 |
commit | 9bceab41933f59fba4ac2278656d808f1b1d1efe (patch) | |
tree | 92e6097324f577fe3c1ea555b1911b52c7f8cd11 /gas/config | |
parent | cf80913ab894d527fe274384a8fa247278d85d03 (diff) | |
download | binutils-gdb-9bceab41933f59fba4ac2278656d808f1b1d1efe.tar.gz |
sparc: make a field type bfd_reloc_code_real_type
gas/ChangeLog:
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.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-sparc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c index 45b2be645d1..9171407621a 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; }; |