Skip to content

Commit 9abae17

Browse files
authored
[UpdateTestChecks][llc] Support arm64-apple-darwin (#165092)
Adds `arm64-apple-darwin` support to `asm.py` matching and removes now invalidated `target-triple-mismatch` test (I dont have another triple supported by llc but not the autogenerator that make this test useful).
1 parent cd9d487 commit 9abae17

File tree

3 files changed

+1
-18
lines changed

3 files changed

+1
-18
lines changed

llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/target-triple-mismatch.ll

Lines changed: 0 additions & 7 deletions
This file was deleted.

llvm/test/tools/UpdateTestChecks/update_llc_test_checks/target-triple-mismatch.test

Lines changed: 0 additions & 11 deletions
This file was deleted.

llvm/utils/UpdateTestChecks/asm.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,7 @@ def get_run_handler(triple):
570570
"arm64": (scrub_asm_arm_eabi, ASM_FUNCTION_AARCH64_RE),
571571
"arm64e": (scrub_asm_arm_eabi, ASM_FUNCTION_AARCH64_DARWIN_RE),
572572
"arm64ec": (scrub_asm_arm_eabi, ASM_FUNCTION_AARCH64_RE),
573+
"arm64-apple-darwin": (scrub_asm_arm_eabi, ASM_FUNCTION_AARCH64_DARWIN_RE),
573574
"arm64-apple-ios": (scrub_asm_arm_eabi, ASM_FUNCTION_AARCH64_DARWIN_RE),
574575
"arm64-apple-macosx": (scrub_asm_arm_eabi, ASM_FUNCTION_AARCH64_DARWIN_RE),
575576
"armv7-apple-ios": (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_IOS_RE),

0 commit comments

Comments
 (0)