From 9c2d34012d0c23a4a61b59e364b73be32522ef27 Mon Sep 17 00:00:00 2001 From: Jeffrey Yasskin Date: Tue, 24 Nov 2009 02:11:14 +0000 Subject: [PATCH] Oops. Re-disable JITTest.NoStubs on ARM and PPC since they still use stubs to make far calls work. llvm-svn: 89733 --- llvm/unittests/ExecutionEngine/JIT/JITTest.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp b/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp index b676ee41b275..12c6b67d9875 100644 --- a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp +++ b/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp @@ -457,6 +457,10 @@ TEST_F(JITTest, ModuleDeletion) { NumTablesDeallocated); } +// ARM and PPC still emit stubs for calls since the target may be too far away +// to call directly. This #if can probably be removed when +// http://llvm.org/PR5201 is fixed. +#if !defined(__arm__) && !defined(__powerpc__) && !defined(__ppc__) typedef int (*FooPtr) (); TEST_F(JITTest, NoStubs) { @@ -494,6 +498,7 @@ TEST_F(JITTest, NoStubs) { ASSERT_EQ(stubsBefore, RJMM->stubsAllocated); } +#endif // !ARM && !PPC TEST_F(JITTest, FunctionPointersOutliveTheirCreator) { TheJIT->DisableLazyCompilation(true);