Explorar el Código

* correct tripletcpustr, resolves #40301

florian hace 2 años
padre
commit
52147baa04
Se han modificado 1 ficheros con 1 adiciones y 4 borrados
  1. 1 4
      compiler/riscv64/tripletcpu.pas

+ 1 - 4
compiler/riscv64/tripletcpu.pas

@@ -37,10 +37,7 @@ uses
 
 function tripletcpustr(tripletstyle: ttripletstyle): ansistring;
   begin
-    if tripletstyle=triplet_llvm then
-      result:='sparcv9'
-    else
-      result:='sparc64'
+    result:='riscv64'
   end;