diff options
author | Nick Clifton <nickc@redhat.com> | 2005-07-29 13:52:00 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-07-29 13:52:00 +0000 |
commit | a70b66ca83d884478cc6007c3bf6cac34d416c2f (patch) | |
tree | 306646b403be9979eab0933d63c9ce1ad0224e59 /gas/config/tc-m32r.c | |
parent | 2ff1314a91cecf610668b62791a8868dd78bce67 (diff) | |
download | binutils-redhat-a70b66ca83d884478cc6007c3bf6cac34d416c2f.tar.gz |
(m32r_check_fixup): Fixed X_op check.
Diffstat (limited to 'gas/config/tc-m32r.c')
-rw-r--r-- | gas/config/tc-m32r.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-m32r.c b/gas/config/tc-m32r.c index 978f373002..54452c5433 100644 --- a/gas/config/tc-m32r.c +++ b/gas/config/tc-m32r.c @@ -479,7 +479,7 @@ m32r_check_fixup (expressionS *main_exp, bfd_reloc_code_real_type *r_type_p) return 0; } - if (exp->X_op == O_PIC_reloc || exp->X_md != BFD_RELOC_UNUSED) + if (exp->X_op == O_PIC_reloc) { *r_type_p = exp->X_md; if (exp == main_exp) |