aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2011-09-19 08:24:23 +0000
committerTristan Gingold <gingold@adacore.com>2011-09-19 08:24:23 +0000
commita06413e3efb2a015b372b5eb03eba1001e371690 (patch)
tree88ca2da880434ec2dfaa9d2609ca957ace7952b2 /gas
parentd061e45b9a923b4cd31f1ce4862dc0369da0049c (diff)
downloadfsf-binutils-gdb-a06413e3efb2a015b372b5eb03eba1001e371690.zip
fsf-binutils-gdb-a06413e3efb2a015b372b5eb03eba1001e371690.tar.gz
fsf-binutils-gdb-a06413e3efb2a015b372b5eb03eba1001e371690.tar.bz2
2011-09-19 Tristan Gingold <gingold@adacore.com>
* config/tc-alpha.c (insert_operand): Call as_bad_value_out_of_range instead of as_warn_out_of_range.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-alpha.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 63afe4f..a48e187 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2011-09-19 Tristan Gingold <gingold@adacore.com>
+
+ * config/tc-alpha.c (insert_operand): Call as_bad_value_out_of_range
+ instead of as_warn_out_of_range.
+
2011-09-08 Mark Fortescue <mark@mtfhpc.demon.co.uk>
* config/tc-sparc.c (sparc_ip): Handle 'i' + r<0..31>
diff --git a/gas/config/tc-alpha.c b/gas/config/tc-alpha.c
index 931e54c..406fffb 100644
--- a/gas/config/tc-alpha.c
+++ b/gas/config/tc-alpha.c
@@ -1995,7 +1995,7 @@ insert_operand (unsigned insn,
}
if (val < min || val > max)
- as_warn_value_out_of_range (_("operand"), val, min, max, file, line);
+ as_bad_value_out_of_range (_("operand"), val, min, max, file, line);
}
if (operand->insert)