Browse Source

* disabled fpu_soft for x86_64 since activating it only leads to internal
errors (see mantis #15310)

git-svn-id: trunk@14417 -

Jonas Maebe 15 years ago
parent
commit
f104e849d8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      compiler/x86_64/cpuinfo.pas

+ 2 - 2
compiler/x86_64/cpuinfo.pas

@@ -45,7 +45,7 @@ Type
 
    tfputype =
      (fpu_none,
-      fpu_soft,  { generic }
+//      fpu_soft,  { generic }
       fpu_sse64,
       fpu_sse3
      );
@@ -76,7 +76,7 @@ Const
    );
 
    fputypestr : array[tfputype] of string[6] = ('',
-     'SOFT',
+//     'SOFT',
      'SSE64',
      'SSE3'
    );