Browse Source

Fix compilation of loongarch64 compiler, by removing reference to a riscv ABI abi_riscv_hf that was removed

Pierre Muller 1 week ago
parent
commit
b225ba2778
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/options.pas

+ 1 - 1
compiler/options.pas

@@ -5752,7 +5752,7 @@ begin
 
 {$if defined(loongarch64)}
   { LoongArch defaults }
-  if (target_info.abi = abi_riscv_hf) then
+  if (target_info.abi = abi_default) then
     begin
       init_settings.cputype:=cpu_3a;
       init_settings.fputype:=fpu_fd;