소스 검색

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

florian 1 일 전
부모
커밋
335431fec4
1개의 변경된 파일10개의 추가작업 그리고 2개의 파일을 삭제
  1. 10 2
      compiler/powerpc64/cpuinfo.pas

+ 10 - 2
compiler/powerpc64/cpuinfo.pas

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