[PATCH] D63732: [UpdateTestChecks][NFC] Remove entries with same prefix

Jinsong Ji via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 26 13:35:40 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL364471: [UpdateTestChecks][NFC] Remove entries with same prefix (authored by jsji, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D63732?vs=206268&id=206737#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D63732/new/

https://reviews.llvm.org/D63732

Files:
  llvm/trunk/utils/UpdateTestChecks/asm.py


Index: llvm/trunk/utils/UpdateTestChecks/asm.py
===================================================================
--- llvm/trunk/utils/UpdateTestChecks/asm.py
+++ llvm/trunk/utils/UpdateTestChecks/asm.py
@@ -289,7 +289,6 @@
 
 def build_function_body_dictionary_for_triple(args, raw_tool_output, triple, prefixes, func_dict):
   target_handlers = {
-      'x86_64': (scrub_asm_x86, ASM_FUNCTION_X86_RE),
       'i686': (scrub_asm_x86, ASM_FUNCTION_X86_RE),
       'x86': (scrub_asm_x86, ASM_FUNCTION_X86_RE),
       'i386': (scrub_asm_x86, ASM_FUNCTION_X86_RE),
@@ -313,7 +312,6 @@
       'riscv64': (scrub_asm_riscv, ASM_FUNCTION_RISCV_RE),
       'lanai': (scrub_asm_lanai, ASM_FUNCTION_LANAI_RE),
       'sparc': (scrub_asm_sparc, ASM_FUNCTION_SPARC_RE),
-      'sparcv9': (scrub_asm_sparc, ASM_FUNCTION_SPARC_RE),
       's390x': (scrub_asm_systemz, ASM_FUNCTION_SYSTEMZ_RE),
       'wasm32': (scrub_asm_wasm32, ASM_FUNCTION_WASM32_RE),
   }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D63732.206737.patch
Type: text/x-patch
Size: 948 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190626/feaf1cda/attachment.bin>


More information about the llvm-commits mailing list