From 5aa72b23cff87ce98887945a4e2c9ca9adf64fb4 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 10 Jan 1991 13:57:29 +0000 Subject: [PATCH] corrected small ommission --- mach/i386/as/mach4.c | 2 ++ mach/i86/as/mach4.c | 2 ++ 2 files changed, 4 insertions(+) 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 -- 2.34.1