[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
diff --git a/lnt/tests/nt.py b/lnt/tests/nt.py
index f848875..899995f 100644
--- a/lnt/tests/nt.py
+++ b/lnt/tests/nt.py
@@ -424,6 +424,8 @@
                 llvm_arch = 'Sparc'
             elif arch in ('mips', 'mipsel', 'mips64', 'mips64el'):
                 llvm_arch = 'Mips'
+            elif arch in ('ve'):
+                llvm_arch = 'VE'
 
         if llvm_arch is not None:
             make_variables['ARCH'] = llvm_arch