From da2afc9a709d65402d7a1ce68ba6b05a3ec511a7 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Thu, 1 Nov 2012 14:28:51 +0000 Subject: [PATCH] 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 --- llvm/test/lit.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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' -- 2.7.4