Browse Source

Use CMOV and FCMOV with a condition, the parser should reject without a condition

Pierre Muller 2 years ago
parent
commit
a592636d9c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/test/units/cpu/tcpu1.pp

+ 2 - 2
tests/test/units/cpu/tcpu1.pp

@@ -9,10 +9,10 @@ begin
     begin
     begin
       writeln('yes');
       writeln('yes');
       asm
       asm
-        cmov %eax,%eax
+        cmove %eax,%eax
         fldz
         fldz
         fldz
         fldz
-        fcmovb %st(1)
+        fcmove %st(1)
         fstpl %st(0)
         fstpl %st(0)
         fstpl %st(0)
         fstpl %st(0)
       end;
       end;