[utils] Add "aarch64-apple-macosx" triple to update_llc_test_checks.py (#144023)

Add a missing valid triple "aarch64-apple-macosx" for usability.
This commit is contained in:
Tomer Shafir 2025-06-14 21:06:43 +03:00 committed by GitHub
parent d6e25c4d21
commit db682a721a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -561,6 +561,7 @@ def get_run_handler(triple):
"aarch64": (scrub_asm_arm_eabi, ASM_FUNCTION_AARCH64_RE),
"aarch64-apple-darwin": (scrub_asm_arm_eabi, ASM_FUNCTION_AARCH64_DARWIN_RE),
"aarch64-apple-ios": (scrub_asm_arm_eabi, ASM_FUNCTION_AARCH64_DARWIN_RE),
"aarch64-apple-macosx": (scrub_asm_arm_eabi, ASM_FUNCTION_AARCH64_DARWIN_RE),
"bpf": (scrub_asm_bpf, ASM_FUNCTION_BPF_RE),
"bpfel": (scrub_asm_bpf, ASM_FUNCTION_BPF_RE),
"bpfeb": (scrub_asm_bpf, ASM_FUNCTION_BPF_RE),