From ac444355c39e8fd457d54858d332a42ab6b17fdc Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 28 Feb 2000 03:25:35 +0000 Subject: [PATCH] * config/tc-alpha.c (md_assemble): Accept `1' and `9' in an opcode, for the instruction `pal19'. From Andrea Arcangeli . --- gas/ChangeLog | 6 ++++++ gas/config/tc-alpha.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 38084c103..776ffe0d3 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2000-02-27 Ian Lance Taylor + + * config/tc-alpha.c (md_assemble): Accept `1' and `9' in an + opcode, for the instruction `pal19'. From Andrea Arcangeli + . + 2000-02-26 Alan Modra * config/tc-i386.c (i386_immediate): Move constant operand sizing diff --git a/gas/config/tc-alpha.c b/gas/config/tc-alpha.c index 75b9a5779..61dba4b8a 100644 --- a/gas/config/tc-alpha.c +++ b/gas/config/tc-alpha.c @@ -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); -- 2.11.4.GIT