[llvm-commits] [llvm] r84128 - /llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp

Nick Lewycky nicholas at mxc.ca
Wed Oct 14 13:04:41 PDT 2009


Author: nicholas
Date: Wed Oct 14 15:04:41 2009
New Revision: 84128

URL: http://llvm.org/viewvc/llvm-project?rev=84128&view=rev
Log:
The ARM and PowerPC jits are broken in this regard.

Modified:
    llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp

Modified: llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp?rev=84128&r1=84127&r2=84128&view=diff

==============================================================================
--- llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp (original)
+++ llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp Wed Oct 14 15:04:41 2009
@@ -166,6 +166,7 @@
   EXPECT_EQ(8, TestFunctionPtr());
 }
 
+#if !defined(__arm__) && !defined(__ppc__)
 // Test a function C which calls A and B which call each other.
 TEST_F(JITTest, NonLazyCompilationStillNeedsStubs) {
   TheJIT->DisableLazyCompilation();
@@ -220,6 +221,7 @@
 
   F1Ptr();
 }
+#endif
 
 // Regression test for PR5162.  This used to trigger an AssertingVH inside the
 // JIT's Function to stub mapping.





More information about the llvm-commits mailing list