[PATCH] D40708: Add more triples to llc_test_checks.py
Phabricator via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 1 06:27:45 PST 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL319545: Add more triples to llc_test_checks.py (authored by sam_parker).
Changed prior to commit:
https://reviews.llvm.org/D40708?vs=125090&id=125127#toc
Repository:
rL LLVM
https://reviews.llvm.org/D40708
Files:
llvm/trunk/utils/update_llc_test_checks.py
Index: llvm/trunk/utils/update_llc_test_checks.py
===================================================================
--- llvm/trunk/utils/update_llc_test_checks.py
+++ llvm/trunk/utils/update_llc_test_checks.py
@@ -192,8 +192,25 @@
'aarch64': (scrub_asm_arm_eabi, ASM_FUNCTION_AARCH64_RE),
'arm-eabi': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
'thumb-eabi': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'thumbv6': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'thumbv6-eabi': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'thumbv6t2': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'thumbv6t2-eabi': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'thumbv6m': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'thumbv6m-eabi': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'thumbv7': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'thumbv7-eabi': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'thumbv7m': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'thumbv7m-eabi': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
'thumbv8-eabi': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'thumbv8m.base': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'thumbv8m.main': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'armv6': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'armv7': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'armv7-eabi': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
'armeb-eabi': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'armv7eb-eabi': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
+ 'armv7eb': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE),
'mips': (scrub_asm_mips, ASM_FUNCTION_MIPS_RE),
'powerpc64': (scrub_asm_powerpc64, ASM_FUNCTION_PPC_RE),
'powerpc64le': (scrub_asm_powerpc64, ASM_FUNCTION_PPC_RE),
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D40708.125127.patch
Type: text/x-patch
Size: 1825 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171201/83221a8b/attachment.bin>
More information about the llvm-commits
mailing list