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

Muhammad Omair Javaid via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Sun Oct 23 23:41:08 PDT 2022


This revision was automatically updated to reflect the committed changes.
Closed by commit rGedb68a453350: [LIT] Add AArch64/Windows to LP64 feature (authored by omjavaid).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D136070/new/

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.470058.patch
Type: text/x-patch
Size: 527 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20221024/015c4e85/attachment-0001.bin>


More information about the cfe-commits mailing list