From: ceriel Date: Thu, 10 Jan 1991 13:57:29 +0000 (+0000) Subject: corrected small ommission X-Git-Tag: release-5-5~1304 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=5aa72b23cff87ce98887945a4e2c9ca9adf64fb4;p=ack.git corrected small ommission --- diff --git a/mach/i386/as/mach4.c b/mach/i386/as/mach4.c index aa3373baf..8703e66da 100644 --- a/mach/i386/as/mach4.c +++ b/mach/i386/as/mach4.c @@ -184,6 +184,8 @@ oper : NOOP_1 { emit1($1); emit1($1>>8); } | FST_ST ST ',' st_i { emit1($1); emit1(($1>>8)|$4); } + | FST_ST2 ST ',' st_i + { emit1($1); emit1(($1>>8)|$4); } | FST_ST st_i ',' ST { emit1($1|4); emit1((($1>>8)|$2)); } | FST_ST2 st_i ',' ST diff --git a/mach/i86/as/mach4.c b/mach/i86/as/mach4.c index 3fd78c781..865a2ed80 100644 --- a/mach/i86/as/mach4.c +++ b/mach/i86/as/mach4.c @@ -113,6 +113,8 @@ oper : NOOP_1 { emit1($1); emit1($1>>8); } | FST_ST ST ',' st_i { emit1($1); emit1(($1>>8)|$4); } + | FST_ST2 ST ',' st_i + { emit1($1); emit1(($1>>8)|$4); } | FST_ST st_i ',' ST { emit1($1|4); emit1((($1>>8)|$2)); } | FST_ST2 st_i ',' ST