diff options
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-mips.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 9fde462..3dc6a53 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -5082,7 +5082,10 @@ match_int_operand (struct mips_arg_info *arg, /* Accept non-constant operands if no later alternative matches, leaving it for the caller to process. */ if (!arg->lax_match) - return FALSE; + { + match_not_constant (arg); + return FALSE; + } offset_reloc[0] = BFD_RELOC_LO16; return TRUE; } |