[llvm] r210229 - Use AArch64 instead of now removed ARM64 in test configs

Alexey Samsonov vonosmas at gmail.com
Wed Jun 4 17:25:31 PDT 2014


Author: samsonov
Date: Wed Jun  4 19:25:30 2014
New Revision: 210229

URL: http://llvm.org/viewvc/llvm-project?rev=210229&view=rev
Log:
Use AArch64 instead of now removed ARM64 in test configs

Modified:
    llvm/trunk/test/DebugInfo/AArch64/lit.local.cfg
    llvm/trunk/test/ExecutionEngine/lit.local.cfg
    llvm/trunk/test/Transforms/LoopVectorize/AArch64/lit.local.cfg

Modified: llvm/trunk/test/DebugInfo/AArch64/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/AArch64/lit.local.cfg?rev=210229&r1=210228&r2=210229&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/AArch64/lit.local.cfg (original)
+++ llvm/trunk/test/DebugInfo/AArch64/lit.local.cfg Wed Jun  4 19:25:30 2014
@@ -1,4 +1,4 @@
 targets = set(config.root.targets_to_build.split())
-if not 'ARM64' in targets:
+if not 'AArch64' in targets:
     config.unsupported = True
 

Modified: llvm/trunk/test/ExecutionEngine/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/lit.local.cfg?rev=210229&r1=210228&r2=210229&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/lit.local.cfg (original)
+++ llvm/trunk/test/ExecutionEngine/lit.local.cfg Wed Jun  4 19:25:30 2014
@@ -1,4 +1,4 @@
-if config.root.host_arch in ['PowerPC', 'AArch64', 'ARM64', 'SystemZ']:
+if config.root.host_arch in ['PowerPC', 'AArch64', 'SystemZ']:
     config.unsupported = True
 
 # CMake and autoconf diverge in naming or host_arch

Modified: llvm/trunk/test/Transforms/LoopVectorize/AArch64/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/LoopVectorize/AArch64/lit.local.cfg?rev=210229&r1=210228&r2=210229&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/LoopVectorize/AArch64/lit.local.cfg (original)
+++ llvm/trunk/test/Transforms/LoopVectorize/AArch64/lit.local.cfg Wed Jun  4 19:25:30 2014
@@ -1,6 +1,6 @@
 config.suffixes = ['.ll']
 
 targets = set(config.root.targets_to_build.split())
-if not 'ARM64' in targets:
+if not 'AArch64' in targets:
     config.unsupported = True
 





More information about the llvm-commits mailing list