diff options
Diffstat (limited to 'gas/config/tc-mips.c')
-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 3dc6a53..beb4d46 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -5102,7 +5102,10 @@ match_int_operand (struct mips_arg_info *arg, { max_val = ((1 << operand_base->size) - 1) << operand->shift; if (!arg->lax_match && sval <= max_val) - return FALSE; + { + match_out_of_range (arg); + return FALSE; + } } } else |