llvm/test/lit.cfg: Don't use mcjit to ppc32 yet, not ready.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 1 Nov 2012 14:28:51 +0000 (14:28 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 1 Nov 2012 14:28:51 +0000 (14:28 +0000)
Unsupported CPU type!
UNREACHABLE executed at llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp:553!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167231 91177308-0d34-0410-b5e6-96231b3b80d8

test/lit.cfg

index 76b182747e54e25fd3505f8ec98395a63b556c34..79eaa23c8ba97b2b83a1c097ec13e3434e52c709 100644 (file)
@@ -149,8 +149,9 @@ config.substitutions.append( ('%mcjit_triple', mcjit_triple) )
 
 # Provide a substition for those tests that need to run the jit to obtain data
 # but simply want use the currently considered most reliable jit for platform
+# FIXME: ppc32 is not ready for mcjit.
 if 'arm' in config.target_triple \
-   or 'powerpc' in config.target_triple:
+   or 'powerpc64' in config.target_triple:
     defaultIsMCJIT = 'true'
 else:
     defaultIsMCJIT = 'false'