Browse Source

no message

florian 22 years ago
parent
commit
62909217ed
1 changed files with 0 additions and 33 deletions
  1. 0 33
      tests/webtbs/Tw2668.pp

+ 0 - 33
tests/webtbs/Tw2668.pp

@@ -1,33 +0,0 @@
-{ %version=1.1 }
-{ Source provided for Free Pascal Bug Report 2668 }
-{ Submitted by "Marco" on  2003-09-06 }
-{ e-mail: [email protected] }
-
-{$MODE DELPHI} {$ASMMODE INTEL}
-
-type
-  TFloatingPointClass =
-   (
-    fpZero,     // zero
-    fpNormal,   // normal finite <> 0
-    fpDenormal, // denormalized finite
-    fpInfinite, // infinite
-    fpNaN,      // not a number
-    fpInvalid   // unsupported floating point format
-   );
-
-const
-  FPClasses: array [0..5] of TFloatingPointClass =
-   (
-    fpInvalid,
-    fpNaN,
-    fpNormal,
-    fpInfinite,
-    fpZero,
-    fpDenormal
-   );
-
-asm
-        MOVZX   EAX, TFloatingPointClass(FPClasses[EDX])
-        MOVZX   EAX, TFloatingPointClass([ECX].FPClasses[EDX])
-end.