[llvm-commits] [llvm] r84482 - /llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp
Daniel Dunbar
daniel at zuster.org
Mon Oct 19 02:19:33 PDT 2009
Author: ddunbar
Date: Mon Oct 19 04:19:32 2009
New Revision: 84482
URL: http://llvm.org/viewvc/llvm-project?rev=84482&view=rev
Log:
Also check for __POWERPC__ when skipping these tests.
Modified:
llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp
Modified: llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp?rev=84482&r1=84481&r2=84482&view=diff
==============================================================================
--- llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp (original)
+++ llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp Mon Oct 19 04:19:32 2009
@@ -166,7 +166,7 @@
EXPECT_EQ(8, TestFunctionPtr());
}
-#if !defined(__arm__) && !defined(__ppc__)
+#if !defined(__arm__) && !defined(__POWERPC__) && !defined(__ppc__)
// Test a function C which calls A and B which call each other.
TEST_F(JITTest, NonLazyCompilationStillNeedsStubs) {
TheJIT->DisableLazyCompilation();
More information about the llvm-commits
mailing list