]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* config/tc-alpha.c (s_alpha_set): Ignore the .set (no)move and
authorJ.T. Conklin <jtc@acorntoolworks.com>
Tue, 22 Nov 1994 18:29:07 +0000 (18:29 +0000)
committerJ.T. Conklin <jtc@acorntoolworks.com>
Tue, 22 Nov 1994 18:29:07 +0000 (18:29 +0000)
  .set (no)volatile directives.

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

index 43b3eee9916904ec98e727cc7f92afcbb2204ca1..c8971c2e96358f79644394ac546c83a4614d6ebd 100644 (file)
@@ -1,5 +1,14 @@
+Tue Nov 22 10:23:25 1994  J.T. Conklin  <jtc@rtl.cygnus.com>
+
+       * config/tc-alpha.c (s_alpha_set): Ignore the .set (no)move and
+         .set (no)volatile directives.
+
 Tue Nov 15 21:44:13 1994  Jeff Law  (law@snake.cs.utah.edu)
 
+       * config/tc-hppa.c (pa_subspace): Make sure to always reset
+       current_subspace.
+       (pa_text, pa_data): Likewise.
+
        * config/tc-hppa.c (pa_align): New function.  Aligns the current
        offset within the current subspace along with updating the
        alignment of the subspace itself.
index 2b82dd7e3d151e0e19bd21150814c986e5839e79..3453e65704ae05237af791b0ff5592fd9f5b8122 100644 (file)
@@ -1244,8 +1244,7 @@ alpha_ip (str, insns)
       break;
 
     default:
-      as_warn ("Unknown opcode: `%s'", str);
-      exit (1);
+      as_fatal ("Unknown opcode: `%s'", str);
     }
   if ((pattern = (struct alpha_opcode *) hash_find (op_hash, str)) == NULL)
     {
@@ -2357,6 +2356,10 @@ s_alpha_set (x)
     at_ok = yesno;
   else if (!strcmp ("macro", s))
     macro_ok = yesno;
+  else if (!strcmp ("move", s))
+    /* ignore */ ;
+  else if (!strcmp ("volatile", s))
+    /* ignore */ ;
   else
     as_warn ("Tried to set unrecognized symbol: %s", name);
   *input_line_pointer = ch;