The ARM and PowerPC jits are broken in this regard.

llvm-svn: 84128
This commit is contained in:
Nick Lewycky 2009-10-14 20:04:41 +00:00
parent 6f2ffcef20
commit a39f121155
1 changed files with 2 additions and 0 deletions

View 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.