PowerPC ifdef'ing considered more complicated than one might like.
authorDaniel Dunbar <daniel@zuster.org>
Tue, 20 Oct 2009 05:33:23 +0000 (05:33 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Tue, 20 Oct 2009 05:33:23 +0000 (05:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84603 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/ExecutionEngine/JIT/JITTest.cpp

index 814aafcfb427f1b3e8b850fe14ecaaec6b4587ee..8f9b65ab0badf9674709e678ab50f85ce08b5d9d 100644 (file)
@@ -166,7 +166,7 @@ TEST_F(JITTest, FarCallToKnownFunction) {
   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();