Browse Source

+ add a few power architectures so we can check for yield support

florian 1 day ago
parent
commit
335431fec4
1 changed files with 10 additions and 2 deletions
  1. 10 2
      compiler/powerpc64/cpuinfo.pas

+ 10 - 2
compiler/powerpc64/cpuinfo.pas

@@ -34,7 +34,11 @@ type
 
   { possible supported processors for this target }
   tcputype = (cpu_none,
-    cpu_ppc970
+    cpu_power4,
+    cpu_ppc970,
+    cpu_power5,
+    cpu_power6,
+    cpu_power7
     );
 
   tfputype =
@@ -83,7 +87,11 @@ Const
     ];
 
   cputypestr: array[tcputype] of string[10] = ('',
-    '970'
+    'POWER4',
+    '970',
+    'POWER5',
+    'POWER6',
+    'POWER7'
     );
 
   fputypestr: array[tfputype] of string[8] = (