The ARM and PowerPC jits are broken in this regard.
authorNick Lewycky <nicholas@mxc.ca>
Wed, 14 Oct 2009 20:04:41 +0000 (20:04 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Wed, 14 Oct 2009 20:04:41 +0000 (20:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84128 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/ExecutionEngine/JIT/JITTest.cpp

index 55d37493ea5a2e69e53b15ee457e1abfd7f00ee4..d7aaea7134fc0848190681a26c98a0709595b93e 100644 (file)
@@ -166,6 +166,7 @@ TEST_F(JITTest, FarCallToKnownFunction) {
   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 @@ TEST_F(JITTest, NonLazyCompilationStillNeedsStubs) {
 
   F1Ptr();
 }
+#endif
 
 // Regression test for PR5162.  This used to trigger an AssertingVH inside the
 // JIT's Function to stub mapping.