[llvm] r374866 - [LLDB] [Windows] Initial support for ARM64 register contexts
Martin Storsjo via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 15 01:31:52 PDT 2019
Author: mstorsjo
Date: Tue Oct 15 01:31:52 2019
New Revision: 374866
URL: http://llvm.org/viewvc/llvm-project?rev=374866&view=rev
Log:
[LLDB] [Windows] Initial support for ARM64 register contexts
Differential Revision: https://reviews.llvm.org/D67954
Modified:
llvm/trunk/utils/lit/lit/llvm/config.py
Modified: llvm/trunk/utils/lit/lit/llvm/config.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/lit/lit/llvm/config.py?rev=374866&r1=374865&r2=374866&view=diff
==============================================================================
--- llvm/trunk/utils/lit/lit/llvm/config.py (original)
+++ llvm/trunk/utils/lit/lit/llvm/config.py Tue Oct 15 01:31:52 2019
@@ -97,6 +97,8 @@ class LLVMConfig(object):
features.add('target-x86')
elif re.match(r'^x86_64.*', target_triple):
features.add('target-x86_64')
+ elif re.match(r'^aarch64.*', target_triple):
+ features.add('target-aarch64')
use_gmalloc = lit_config.params.get('use_gmalloc', None)
if lit.util.pythonize_bool(use_gmalloc):
More information about the llvm-commits
mailing list