diff options
Diffstat (limited to 'llvm/utils/UpdateTestChecks/asm.py')
-rw-r--r-- | llvm/utils/UpdateTestChecks/asm.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/utils/UpdateTestChecks/asm.py b/llvm/utils/UpdateTestChecks/asm.py index cce00e4..4dc50d9 100644 --- a/llvm/utils/UpdateTestChecks/asm.py +++ b/llvm/utils/UpdateTestChecks/asm.py @@ -534,8 +534,9 @@ def get_run_handler(triple): "i686": (scrub_asm_x86, ASM_FUNCTION_X86_RE), "x86": (scrub_asm_x86, ASM_FUNCTION_X86_RE), "i386": (scrub_asm_x86, ASM_FUNCTION_X86_RE), + "arm64_32": (scrub_asm_arm_eabi, ASM_FUNCTION_AARCH64_DARWIN_RE), "arm64_32-apple-ios": (scrub_asm_arm_eabi, ASM_FUNCTION_AARCH64_DARWIN_RE), - "arm64_32-apple-watchos2.0.0": ( + "arm64_32-apple-watchos": ( scrub_asm_arm_eabi, ASM_FUNCTION_AARCH64_DARWIN_RE, ), |