Ver código fonte

ARM: fixed compiler compilation after 75c16b612660

Jonas Maebe 3 anos atrás
pai
commit
2ed4071c1e
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      compiler/arm/tripletcpu.pas

+ 2 - 2
compiler/arm/tripletcpu.pas

@@ -41,10 +41,10 @@ function tripletcpustr(tripletstyle: ttripletstyle): ansistring;
       begin
         if (target_info.abi=abi_eabihf) and
            not(target_info.system in systems_windows) then
-          result='armhf'
+          result:='armhf'
         else
           result:='arm';
-        exit:
+        exit;
       end;
     result:=lower(cputypestr[current_settings.cputype]);
     { llvm replaces the cpu name with thumb for when generating thumb code}