From: ceriel Date: Mon, 31 Jul 1989 14:34:23 +0000 (+0000) Subject: use new interface to fif and fef routines X-Git-Tag: release-5-5~2313 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=022b40d40c2ef68b15db6d033f3e6d342d568ea9;p=ack.git use new interface to fif and fef routines --- diff --git a/mach/i386/ce/EM_table b/mach/i386/ce/EM_table index afb97d7e2..31bbca922 100644 --- a/mach/i386/ce/EM_table +++ b/mach/i386/ce/EM_table @@ -343,20 +343,18 @@ C_dvf default ==> arg_error("C_dvf", $1). C_fif - $1 == 4 ==> "call .fif4". - $1 == 8 ==> "call .fif8". + $1 == 4 ==> C_lor((arith)1); + "call .fif4"; + "pop ebx". + $1 == 8 ==> C_lor((arith)1); + "call .fif8"; + "pop ebx". default ==> arg_error("C_fif", $1). C_fef - $1 == 4 ==> "pop eax"; - "push eax"; - "push eax"; + $1 == 4 ==> C_lor((arith)1); "call .fef4". - $1 == 8 ==> "pop eax"; - "pop ebx"; - "push eax"; - "push ebx"; - "push eax"; + $1 == 8 ==> C_lor((arith)1); "call .fef8". default ==> arg_error("C_fef", $1). diff --git a/mach/i86/ce/EM_table b/mach/i86/ce/EM_table index 45177495b..971344f62 100644 --- a/mach/i86/ce/EM_table +++ b/mach/i86/ce/EM_table @@ -414,26 +414,18 @@ C_dvf default ==> arg_error("C_dvf", $1). C_fif - $1 == 4 ==> "call .fif4". - $1 == 8 ==> "call .fif8". + $1 == 4 ==> C_lor((arith)1); + "call .fif4"; + "pop bx". + $1 == 8 ==> C_lor((arith)1); + "call .fif8"; + "pop bx". default ==> arg_error("C_fif", $1). C_fef - $1 == 4 ==> "pop ax"; - "pop bx"; - "push bx"; - "push bx"; - "push ax"; + $1 == 4 ==> C_lor((arith)1); "call .fef4". - $1 == 8 ==> "pop ax"; - "pop bx"; - "pop cx"; - "pop dx"; - "push dx"; - "push dx"; - "push cx"; - "push bx"; - "push ax"; + $1 == 8 ==> C_lor((arith)1); "call .fef8". default ==> arg_error("C_fef", $1).