diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-10-14 20:04:41 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-10-14 20:04:41 +0000 |
commit | a39f12115583f61ff04469a507d268685a2d679a (patch) | |
tree | 12cd62bb7422b70631f638eddaced70b2228f8d6 /llvm/unittests/ExecutionEngine/JIT/JITTest.cpp | |
parent | 6f2ffcef20ad9c9ecab9516428e5e7c0d8baf4d7 (diff) | |
download | bcm5719-llvm-a39f12115583f61ff04469a507d268685a2d679a.tar.gz bcm5719-llvm-a39f12115583f61ff04469a507d268685a2d679a.zip |
The ARM and PowerPC jits are broken in this regard.
llvm-svn: 84128
Diffstat (limited to 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp')
-rw-r--r-- | llvm/unittests/ExecutionEngine/JIT/JITTest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp b/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp index 55d37493ea5..d7aaea7134f 100644 --- a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp +++ b/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp @@ -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. |