[PATCH] D140107: [UpdateTestChecks] [PowerPC] Add ppc64 triple support
Kai Nacke via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 15 07:58:18 PST 2022
Kai created this revision.
Kai added reviewers: nemanjai, lebedev.ri, RKSimon, shchenz.
Herald added subscribers: luismarques, arichardson.
Herald added a project: All.
Kai requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Newer tests use ppc64le-linux triple. It is identical to ppc32.
Some of the PPC GIsel tests were generated by this change.
https://reviews.llvm.org/D140107
Files:
llvm/utils/UpdateTestChecks/asm.py
Index: llvm/utils/UpdateTestChecks/asm.py
===================================================================
--- llvm/utils/UpdateTestChecks/asm.py
+++ llvm/utils/UpdateTestChecks/asm.py
@@ -502,6 +502,7 @@
'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),
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D140107.483190.patch
Type: text/x-patch
Size: 617 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221215/d07aca2a/attachment.bin>
More information about the llvm-commits
mailing list