[PATCH] D119169: [llvm] Recognize arm64 as target-aarch64 in LIT
Jonas Devlieghere via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 8 21:29:33 PST 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG43d3d886a068: [llvm] Recognize arm64 as target-aarch64 in lit (authored by JDevlieghere).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D119169/new/
https://reviews.llvm.org/D119169
Files:
llvm/utils/lit/lit/llvm/config.py
Index: llvm/utils/lit/lit/llvm/config.py
===================================================================
--- llvm/utils/lit/lit/llvm/config.py
+++ llvm/utils/lit/lit/llvm/config.py
@@ -119,6 +119,8 @@
features.add('target-x86_64')
elif re.match(r'^aarch64.*', target_triple):
features.add('target-aarch64')
+ elif re.match(r'^arm64.*', target_triple):
+ features.add('target-aarch64')
elif re.match(r'^arm.*', target_triple):
features.add('target-arm')
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D119169.407043.patch
Type: text/x-patch
Size: 562 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220209/ef87010f/attachment.bin>
More information about the llvm-commits
mailing list