]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* config/tc-alpha.c (md_assemble): Accept `1' and `9' in an
authorIan Lance Taylor <ian@airs.com>
Mon, 28 Feb 2000 03:25:35 +0000 (03:25 +0000)
committerIan Lance Taylor <ian@airs.com>
Mon, 28 Feb 2000 03:25:35 +0000 (03:25 +0000)
opcode, for the instruction `pal19'.  From Andrea Arcangeli
<andrea@suse.de>.

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

index 38084c1039cfc7850bb164f6705211f962fe7f0a..776ffe0d3983a197033db8f32949ff946fef91c2 100644 (file)
@@ -1,3 +1,9 @@
+2000-02-27  Ian Lance Taylor  <ian@zembu.com>
+
+       * config/tc-alpha.c (md_assemble): Accept `1' and `9' in an
+       opcode, for the instruction `pal19'.  From Andrea Arcangeli
+       <andrea@suse.de>.
+
 2000-02-26  Alan Modra  <alan@spri.levels.unisa.edu.au>
 
        * config/tc-i386.c (i386_immediate): Move constant operand sizing
index 75b9a577902f7c091c28720c8f4466584344bd15..61dba4b8a4f50466ff58654ef8404a736310232d 100644 (file)
@@ -937,7 +937,7 @@ md_assemble (str)
   size_t opnamelen;
 
   /* split off the opcode */
-  opnamelen = strspn (str, "abcdefghijklmnopqrstuvwxyz_/468");
+  opnamelen = strspn (str, "abcdefghijklmnopqrstuvwxyz_/46819");
   trunclen = (opnamelen < sizeof (opname) - 1
              ? opnamelen
              : sizeof (opname) - 1);