Browse Source

Remove llvm-mc-10 support in agllvmmc unit

Pierre Muller 2 months ago
parent
commit
290c597878
1 changed files with 0 additions and 14 deletions
  1. 0 14
      compiler/wasm32/agllvmmc.pas

+ 0 - 14
compiler/wasm32/agllvmmc.pas

@@ -432,19 +432,6 @@ implementation
 
 
 
 
   const
   const
-    as_wasm32_llvm_mc_v10_info : tasminfo =
-       (
-         id     : as_wasm32_llvm_mc_v10;
-         idtxt  : 'LLVM-MC-10';
-         asmbin : 'llvm-mc-10';
-         asmcmd : '--assemble --arch=wasm32 -mattr=+sign-ext,+exception-handling,+bulk-memory,+atomics --filetype=obj -o $OBJ $EXTRAOPT $ASM';
-         supported_targets : [system_wasm32_embedded,system_wasm32_wasip1,system_wasm32_wasip1threads,system_wasm32_wasip2];
-         flags : [af_smartlink_sections];
-         labelprefix : '.L';
-         labelmaxlen : -1;
-         comment : '# ';
-         dollarsign : '$';
-       );
     as_wasm32_llvm_mc_v11_info : tasminfo =
     as_wasm32_llvm_mc_v11_info : tasminfo =
        (
        (
          id     : as_wasm32_llvm_mc_v11;
          id     : as_wasm32_llvm_mc_v11;
@@ -586,7 +573,6 @@ implementation
        );
        );
 
 
 initialization
 initialization
-  RegisterAssembler(as_wasm32_llvm_mc_v10_info,TLLVMMachineCodePlaygroundAssemblerV10);
   RegisterAssembler(as_wasm32_llvm_mc_v11_info,TLLVMMachineCodePlaygroundAssemblerV11);
   RegisterAssembler(as_wasm32_llvm_mc_v11_info,TLLVMMachineCodePlaygroundAssemblerV11);
   RegisterAssembler(as_wasm32_llvm_mc_v12_info,TLLVMMachineCodePlaygroundAssemblerV12);
   RegisterAssembler(as_wasm32_llvm_mc_v12_info,TLLVMMachineCodePlaygroundAssemblerV12);
   RegisterAssembler(as_wasm32_llvm_mc_v13_info,TLLVMMachineCodePlaygroundAssemblerV13);
   RegisterAssembler(as_wasm32_llvm_mc_v13_info,TLLVMMachineCodePlaygroundAssemblerV13);