diff options
author | Trevor Saunders <tbsaunde+binutils@tbsaunde.org> | 2016-05-14 02:34:23 -0400 |
---|---|---|
committer | Trevor Saunders <tbsaunde+binutils@tbsaunde.org> | 2016-05-18 06:26:07 -0400 |
commit | 4bfaa1cae74531b8c7a7ccfb95e202ab9772dfdd (patch) | |
tree | 5561ae75082448945aec48e5c3600c8a6b3c78e8 /gas/config/tc-dlx.c | |
parent | eb408eaac923140f561d8307cb63da9c9550096a (diff) | |
download | binutils-gdb-4bfaa1cae74531b8c7a7ccfb95e202ab9772dfdd.tar.gz |
change the type of some fields to bfd_reloc_code_real_type
gas/ChangeLog:
2016-05-18 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
* config/tc-dlx.c (struct machine_it): change the type of a field from
int to bfd_reloc_code_real_type.
* config/tc-tic4x.c: Likewise.
Diffstat (limited to 'gas/config/tc-dlx.c')
-rw-r--r-- | gas/config/tc-dlx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-dlx.c b/gas/config/tc-dlx.c index b636cece1a7..03e8de9ea25 100644 --- a/gas/config/tc-dlx.c +++ b/gas/config/tc-dlx.c @@ -52,7 +52,7 @@ struct machine_it int pcrel; int size; int reloc_offset; /* Offset of reloc within insn. */ - int reloc; + bfd_reloc_code_real_type reloc; int HI; int LO; } |