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://review.tizen.org/git/?a=commitdiff_plain;h=da2afc9a709d65402d7a1ce68ba6b05a3ec511a7;p=platform%2Fupstream%2Fllvm.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! llvm-svn: 167231 --- diff --git a/llvm/test/lit.cfg b/llvm/test/lit.cfg index 76b1827..79eaa23 100644 --- a/llvm/test/lit.cfg +++ b/llvm/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'