Skip to content

Commit 9c9f6f8

Browse files
kaz7Simon Moll
authored andcommitted
[VE] Support VE architecture
Summary: Modify LNT to let it know VE architecture in order to run llvm-test-suite well on NEC SX-Aurora VE architecture. Reviewed By: kristof.beyls Differential Revision: https://reviews.llvm.org/D76334
1 parent 785b349 commit 9c9f6f8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lnt/tests/nt.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,8 @@ def compute_run_make_variables(self):
424424
llvm_arch = 'Sparc'
425425
elif arch in ('mips', 'mipsel', 'mips64', 'mips64el'):
426426
llvm_arch = 'Mips'
427+
elif arch in ('ve'):
428+
llvm_arch = 'VE'
427429

428430
if llvm_arch is not None:
429431
make_variables['ARCH'] = llvm_arch

0 commit comments

Comments
 (0)