[UpdateTestChecks][PowerPC] Add ppc64 triple support
authorKai Nacke <kai.peter.nacke@ibm.com>
Thu, 15 Dec 2022 15:44:38 +0000 (15:44 +0000)
committerKai Nacke <kai.peter.nacke@ibm.com>
Thu, 15 Dec 2022 16:25:22 +0000 (16:25 +0000)
Newer tests use ppc64le-linux triple. It is identical to ppc32.
Some of the PPC GIsel tests were generated by this change.

Reviewed by: RKSimon

Differential Revision: https://reviews.llvm.org/D140107

llvm/utils/UpdateTestChecks/asm.py

index d420d96..56bdb56 100644 (file)
@@ -502,6 +502,7 @@ def get_run_handler(triple):
       'msp430': (scrub_asm_msp430, ASM_FUNCTION_MSP430_RE),
       'avr': (scrub_asm_avr, ASM_FUNCTION_AVR_RE),
       'ppc32': (scrub_asm_powerpc, ASM_FUNCTION_PPC_RE),
+      'ppc64': (scrub_asm_powerpc, ASM_FUNCTION_PPC_RE),
       'powerpc': (scrub_asm_powerpc, ASM_FUNCTION_PPC_RE),
       'riscv32': (scrub_asm_riscv, ASM_FUNCTION_RISCV_RE),
       'riscv64': (scrub_asm_riscv, ASM_FUNCTION_RISCV_RE),