[llvm-commits] [llvm] r167231 - /llvm/trunk/test/lit.cfg

NAKAMURA Takumi geek4civic at gmail.com
Thu Nov 1 07:28:51 PDT 2012


Author: chapuni
Date: Thu Nov  1 09:28:51 2012
New Revision: 167231

URL: http://llvm.org/viewvc/llvm-project?rev=167231&view=rev
Log:
llvm/test/lit.cfg: Don't use mcjit to ppc32 yet, not ready.

Unsupported CPU type!
UNREACHABLE executed at llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp:553!

Modified:
    llvm/trunk/test/lit.cfg

Modified: llvm/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/lit.cfg?rev=167231&r1=167230&r2=167231&view=diff
==============================================================================
--- llvm/trunk/test/lit.cfg (original)
+++ llvm/trunk/test/lit.cfg Thu Nov  1 09:28:51 2012
@@ -149,8 +149,9 @@
 
 # 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'





More information about the llvm-commits mailing list