* config/tc-alpha.c (md_assemble): Accept 1' and 9' in an

opcode, for the instruction `pal19'.  From Andrea Arcangeli
	<andrea@suse.de>.
This commit is contained in:
Ian Lance Taylor
2000-02-28 03:25:35 +00:00
parent 8860ff2e51
commit 21b105119f
2 changed files with 7 additions and 1 deletions

View 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

View 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);