浏览代码

* common naming for fpu_none string

git-svn-id: trunk@43768 -
florian 5 年之前
父节点
当前提交
ef87879402

+ 2 - 1
compiler/arm/cpuinfo.pas

@@ -567,7 +567,8 @@ Const
      'ARMV7EM'
    );
 
-   fputypestr : array[tfputype] of string[10] = ('',
+   fputypestr : array[tfputype] of string[10] = (
+     'NONE',
      'SOFT',
      'LIBGCC',
      'FPA',

+ 2 - 1
compiler/i386/cpuinfo.pas

@@ -122,7 +122,8 @@ Const
      'COREAVX2'
    );
 
-   fputypestr : array[tfputype] of string[6] = ('',
+   fputypestr : array[tfputype] of string[6] = (
+     'NONE',
 //     'SOFT',
      'X87',
      'SSE',

+ 2 - 1
compiler/i8086/cpuinfo.pas

@@ -119,7 +119,8 @@ Const
      'PENTIUMM'
    );
 
-   fputypestr : array[tfputype] of string[6] = ('',
+   fputypestr : array[tfputype] of string[6] = (
+     'NONE',
 //     'SOFT',
      'X87',
      'SSE',

+ 2 - 1
compiler/mips/cpuinfo.pas

@@ -88,7 +88,8 @@ Const
      { cpu_pic32mx      } 'PIC32MX'
    );
 
-   fputypestr : array[tfputype] of string[9] = ('',
+   fputypestr : array[tfputype] of string[9] = (
+     'NONE',
      'SOFT',
      'MIPS2','MIPS3'
    );

+ 2 - 1
compiler/powerpc64/cpuinfo.pas

@@ -87,7 +87,8 @@ Const
     '970'
     );
 
-  fputypestr: array[tfputype] of string[8] = ('',
+  fputypestr: array[tfputype] of string[8] = (
+    'NONE',
     'SOFT',
     'STANDARD'
     );

+ 2 - 1
compiler/riscv64/cpuinfo.pas

@@ -94,7 +94,8 @@ Const
     'RV64I'
     );
 
-  fputypestr: array[tfputype] of string[8] = ('',
+  fputypestr: array[tfputype] of string[8] = (
+    'NONE',
     'LIBGCC',
     'SOFT',
     'FD'

+ 2 - 1
compiler/sparc/cpuinfo.pas

@@ -91,7 +91,8 @@ Const
      'SPARCV9'
    );
 
-   fputypestr : array[tfputype] of string[6] = ('',
+   fputypestr : array[tfputype] of string[6] = (
+     'NONE',
      'SOFT',
      'HARD'
    );

+ 2 - 1
compiler/sparc64/cpuinfo.pas

@@ -87,7 +87,8 @@ Const
      'SPARCV9'
    );
 
-   fputypestr : array[tfputype] of string[6] = ('',
+   fputypestr : array[tfputype] of string[6] = (
+     'NONE',
      'SOFT',
      'HARD'
    );

+ 2 - 1
compiler/x86_64/cpuinfo.pas

@@ -120,7 +120,8 @@ Const
      'COREAVX2'
    );
 
-   fputypestr : array[tfputype] of string[7] = ('',
+   fputypestr : array[tfputype] of string[7] = (
+     'NONE',
 //     'SOFT',
      'SSE64',
      'SSE3',