[llvm-commits] [llvm] r84603 - /llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp
Daniel Dunbar
daniel at zuster.org
Mon Oct 19 22:33:23 PDT 2009
Author: ddunbar
Date: Tue Oct 20 00:33:23 2009
New Revision: 84603
URL: http://llvm.org/viewvc/llvm-project?rev=84603&view=rev
Log:
PowerPC ifdef'ing considered more complicated than one might like.
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=84603&r1=84602&r2=84603&view=diff
==============================================================================
--- llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp (original)
+++ llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp Tue Oct 20 00:33:23 2009
@@ -166,7 +166,7 @@
EXPECT_EQ(8, TestFunctionPtr());
}
-#if !defined(__arm__) && !defined(__powerpc__)
+#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