Преглед изворни кода

* fixed ppc64 triple architecture names

git-svn-id: trunk@46239 -
Jonas Maebe пре 5 година
родитељ
комит
b5b1dc6dea
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      compiler/powerpc64/tripletcpu.pas

+ 2 - 2
compiler/powerpc64/tripletcpu.pas

@@ -38,9 +38,9 @@ uses
 function tripletcpustr(tripletstyle: ttripletstyle): ansistring;
   begin
     if target_info.endian=endian_little then
-      result:='ppc64le'
+      result:='powerpc64le'
     else
-      result:='ppc64'
+      result:='powerpc64'
   end;