[llvm] r178871 - Enable JIT/MCJIT unit tests for targets with JIT support.

Jyotsna Verma jverma at codeaurora.org
Fri Apr 5 07:26:16 PDT 2013


Author: jverma
Date: Fri Apr  5 09:26:16 2013
New Revision: 178871

URL: http://llvm.org/viewvc/llvm-project?rev=178871&view=rev
Log:
Enable JIT/MCJIT unit tests for targets with JIT support.
Change unittests/ExecutionEngine/Makefile to include Makefile.config before
TARGET_HAS_JIT flag is checked.

Fixes bug: http://llvm.org/bugs/show_bug.cgi?id=15669


Modified:
    llvm/trunk/unittests/ExecutionEngine/Makefile

Modified: llvm/trunk/unittests/ExecutionEngine/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ExecutionEngine/Makefile?rev=178871&r1=178870&r2=178871&view=diff
==============================================================================
--- llvm/trunk/unittests/ExecutionEngine/Makefile (original)
+++ llvm/trunk/unittests/ExecutionEngine/Makefile Fri Apr  5 09:26:16 2013
@@ -11,9 +11,10 @@ LEVEL = ../..
 TESTNAME = ExecutionEngine
 LINK_COMPONENTS :=interpreter
 
+include $(LEVEL)/Makefile.config
+
 ifeq ($(TARGET_HAS_JIT),1)
-	PARALLEL_DIRS = JIT MCJIT
+  PARALLEL_DIRS = JIT MCJIT
 endif
 
-include $(LEVEL)/Makefile.config
 include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest





More information about the llvm-commits mailing list