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 | ede4ff04cde85ad8ed196f0bb6386734c8232f4a (patch) | |
tree | 8fea30b6368b8b4e2bc39d67062e99d73930bf88 /unittests | |
parent | e3d726a12e19ecf7985a485fc72f3097091b57fa (diff) | |
download | external_llvm-ede4ff04cde85ad8ed196f0bb6386734c8232f4a.zip external_llvm-ede4ff04cde85ad8ed196f0bb6386734c8232f4a.tar.gz external_llvm-ede4ff04cde85ad8ed196f0bb6386734c8232f4a.tar.bz2 |
The ARM and PowerPC jits are broken in this regard.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84128 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/ExecutionEngine/JIT/JITTest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/unittests/ExecutionEngine/JIT/JITTest.cpp b/unittests/ExecutionEngine/JIT/JITTest.cpp index 55d3749..d7aaea7 100644 --- a/unittests/ExecutionEngine/JIT/JITTest.cpp +++ b/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. |