Skip to content

Commit 9cc8630

Browse files
committed
[LLDB] [Windows] Initial support for ARM register contexts
Differential Revision: https://reviews.llvm.org/D69226 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@375392 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 53fb411 commit 9cc8630

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

utils/lit/lit/llvm/config.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ def __init__(self, lit_config, config):
9999
features.add('target-x86_64')
100100
elif re.match(r'^aarch64.*', target_triple):
101101
features.add('target-aarch64')
102+
elif re.match(r'^arm.*', target_triple):
103+
features.add('target-arm')
102104

103105
use_gmalloc = lit_config.params.get('use_gmalloc', None)
104106
if lit.util.pythonize_bool(use_gmalloc):

0 commit comments

Comments
 (0)