From: Trevor Saunders Date: Sun, 22 May 2016 02:24:24 +0000 (-0400) Subject: rx: make the type of a variable bfd_reloc_code_real_type X-Git-Tag: users/hjl/linux/release/2.26.51.0.2~1^2~35^2~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=79052aaec9ec394bb6c8ec9d68e7e86d5838e42b;p=thirdparty%2Fbinutils-gdb.git rx: make the type of a variable bfd_reloc_code_real_type gas/ChangeLog: 2016-05-26 Trevor Saunders * config/tc-rx.c (md_convert_frag): Make the type of reloc_type bfd_reloc_code_real_type. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index da0cdc08d0f..ae4de64f90f 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2016-05-26 Trevor Saunders + + * config/tc-rx.c (md_convert_frag): Make the type of reloc_type + bfd_reloc_code_real_type. + 2016-05-25 H.J. Lu PR gas/20140 diff --git a/gas/config/tc-rx.c b/gas/config/tc-rx.c index f87aac15d5a..a9beec78045 100644 --- a/gas/config/tc-rx.c +++ b/gas/config/tc-rx.c @@ -1762,7 +1762,8 @@ md_convert_frag (bfd * abfd ATTRIBUTE_UNUSED, rx_bytesT * rxb = fragP->tc_frag_data; addressT addr0, mypc; int disp; - int reloc_type, reloc_adjust; + int reloc_adjust; + bfd_reloc_code_real_type reloc_type; char * op = fragP->fr_opcode; int keep_reloc = 0; int ri; @@ -2138,6 +2139,8 @@ md_convert_frag (bfd * abfd ATTRIBUTE_UNUSED, case BFD_RELOC_RX_32_OP: fix->fx_size = 4; break; + default: + break; } }