From: NAKAMURA Takumi Date: Thu, 1 Nov 2012 14:28:51 +0000 (+0000) Subject: llvm/test/lit.cfg: Don't use mcjit to ppc32 yet, not ready. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b6843c28ecd44a4a7e9984a3952afe4e1739b116;p=oota-llvm.git 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! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167231 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/lit.cfg b/test/lit.cfg index 76b182747e5..79eaa23c8ba 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -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'