summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorflorian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-12-24 16:14:28 +0000
committerflorian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-12-24 16:14:28 +0000
commit83a82d7432f84efa9ad91cd170fd51ad77354cbc (patch)
treea3d8b11630b03691b95899b952c9f9286f37d918
parentc9677f7fd7f43f019f274dbb20dd2f7d4627a555 (diff)
downloadfpc-83a82d7432f84efa9ad91cd170fd51ad77354cbc.tar.gz
* common naming for fpu_none string
git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@43768 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r--compiler/arm/cpuinfo.pas3
-rw-r--r--compiler/i386/cpuinfo.pas3
-rw-r--r--compiler/i8086/cpuinfo.pas3
-rw-r--r--compiler/mips/cpuinfo.pas3
-rw-r--r--compiler/powerpc64/cpuinfo.pas3
-rw-r--r--compiler/riscv64/cpuinfo.pas3
-rw-r--r--compiler/sparc/cpuinfo.pas3
-rw-r--r--compiler/sparc64/cpuinfo.pas3
-rw-r--r--compiler/x86_64/cpuinfo.pas3
9 files changed, 18 insertions, 9 deletions
diff --git a/compiler/arm/cpuinfo.pas b/compiler/arm/cpuinfo.pas
index 69b044c086..845496b5b7 100644
--- a/compiler/arm/cpuinfo.pas
+++ b/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',
diff --git a/compiler/i386/cpuinfo.pas b/compiler/i386/cpuinfo.pas
index f479f96db3..520bd7bd16 100644
--- a/compiler/i386/cpuinfo.pas
+++ b/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',
diff --git a/compiler/i8086/cpuinfo.pas b/compiler/i8086/cpuinfo.pas
index 0c4bd962d8..e1f481ca0b 100644
--- a/compiler/i8086/cpuinfo.pas
+++ b/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',
diff --git a/compiler/mips/cpuinfo.pas b/compiler/mips/cpuinfo.pas
index 146313136f..09c3c3a7bd 100644
--- a/compiler/mips/cpuinfo.pas
+++ b/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'
);
diff --git a/compiler/powerpc64/cpuinfo.pas b/compiler/powerpc64/cpuinfo.pas
index 968e2726d0..993b055a20 100644
--- a/compiler/powerpc64/cpuinfo.pas
+++ b/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'
);
diff --git a/compiler/riscv64/cpuinfo.pas b/compiler/riscv64/cpuinfo.pas
index 1ccfaff103..19b8805b2a 100644
--- a/compiler/riscv64/cpuinfo.pas
+++ b/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'
diff --git a/compiler/sparc/cpuinfo.pas b/compiler/sparc/cpuinfo.pas
index b5ca38e63d..3ff72b49f1 100644
--- a/compiler/sparc/cpuinfo.pas
+++ b/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'
);
diff --git a/compiler/sparc64/cpuinfo.pas b/compiler/sparc64/cpuinfo.pas
index 37e8dc5e44..0c9ab804e7 100644
--- a/compiler/sparc64/cpuinfo.pas
+++ b/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'
);
diff --git a/compiler/x86_64/cpuinfo.pas b/compiler/x86_64/cpuinfo.pas
index 33801e1dbe..2c9bd3d8d4 100644
--- a/compiler/x86_64/cpuinfo.pas
+++ b/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',