forked from OSchip/llvm-project
[UpdateTestChecks][NFC] Remove entries with same prefix
Matching is 'lossy', triples with same prefix can be dropped. Differential Revision: https://reviews.llvm.org/D63732 llvm-svn: 364471
This commit is contained in:
parent
6a87e0fc6a
commit
968a454182
|
@ -289,7 +289,6 @@ def get_triple_from_march(march):
|
|||
|
||||
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 @@ def build_function_body_dictionary_for_triple(args, raw_tool_output, triple, pre
|
|||
'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),
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue