Replace as_tsktsk with as_warn.
authorNick Clifton <nickc@redhat.com>
Fri, 18 Aug 2000 19:27:30 +0000 (19:27 +0000)
committerNick Clifton <nickc@redhat.com>
Fri, 18 Aug 2000 19:27:30 +0000 (19:27 +0000)
Make reference to first element of shift_names explicit.

gas/ChangeLog
gas/config/tc-arm.c

index 011b7d8480413d2504d4bebb89e03837c2e13198..f2e576e2db1c648be33e37e5d0bc280884635da5 100644 (file)
@@ -1,3 +1,8 @@
+2000-08-18  Nick Clifton  <nickc@redhat.com>
+
+       * config/tc-arm.c (decode_shift): Replace as_tsktsk with as_warn.
+       Make reference to first element of shift_names explicit.
+
 2000-08-18  Alexandre Oliva  <aoliva@redhat.com>
 
        * write.c (fixup_segment) [TC_DONT_FIX_NON_ADJUSTABLE]: Use
index c6d79669691f89a642c274a1af3ab4a5fae8872b..faded9626bcf4ac1291a054f6dc6a3eacc9fcd9a 100644 (file)
@@ -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
This page took 0.035815 seconds and 4 git commands to generate.