[PATCH] D136070: [LIT] Add AArch64/Windows to LP64 feature

Muhammad Omair Javaid via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Oct 17 04:35:08 PDT 2022


omjavaid created this revision.
Herald added a subscriber: kristof.beyls.
Herald added a project: All.
omjavaid requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.

This patch adds AArch64 to the LP64 feature to avoid running LLP64
incompatible test on AArch64/Windows platform.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D136070

Files:
  clang/test/lit.cfg.py


Index: clang/test/lit.cfg.py
===================================================================
--- clang/test/lit.cfg.py
+++ clang/test/lit.cfg.py
@@ -177,7 +177,7 @@
     config.available_features.add('ms-sdk')
 
 # [PR8833] LLP64-incompatible tests
-if not re.match(r'^x86_64.*-(windows-msvc|windows-gnu)$', config.target_triple):
+if not re.match(r'^(aarch64|x86_64).*-(windows-msvc|windows-gnu)$', config.target_triple):
     config.available_features.add('LP64')
 
 # Tests that are specific to the Apple Silicon macOS.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D136070.468162.patch
Type: text/x-patch
Size: 527 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20221017/080712e3/attachment.bin>


More information about the cfe-commits mailing list