aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2000-08-18 19:27:30 +0000
committerNick Clifton <nickc@redhat.com>2000-08-18 19:27:30 +0000
commit66102fe268a3511a519734b84f53df14263c799e (patch)
tree7ffd0e50223fbe7a216022d4402fc5592a413be3 /gas/config
parent021986386e5aea745ae5b4300b84a3f8ef50e00b (diff)
downloadgdb-66102fe268a3511a519734b84f53df14263c799e.zip
gdb-66102fe268a3511a519734b84f53df14263c799e.tar.gz
gdb-66102fe268a3511a519734b84f53df14263c799e.tar.bz2
Replace as_tsktsk with as_warn.
Make reference to first element of shift_names explicit.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-arm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c
index c6d7966..faded96 100644
--- a/gas/config/tc-arm.c
+++ b/gas/config/tc-arm.c
@@ -2608,8 +2608,8 @@ decode_shift (str, unrestrict)
about this though. */
if (num == 0)
{
- as_tsktsk (_("Shift of 0 ignored."));
- shift = shift_names;
+ as_warn (_("Shift of 0 ignored."));
+ shift = & shift_names[0];
assert (shift->properties->index == SHIFT_LSL);
}
else