Also check for __POWERPC__ when skipping these tests.
authorDaniel Dunbar <daniel@zuster.org>
Mon, 19 Oct 2009 09:19:32 +0000 (09:19 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Mon, 19 Oct 2009 09:19:32 +0000 (09:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84482 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/ExecutionEngine/JIT/JITTest.cpp

index 41abfffb34bb12cacf2c86b7e044078b0cbeeeb7..c1629100e0e4764dc0a65964c91ee4f239ef3e53 100644 (file)
@@ -166,7 +166,7 @@ TEST_F(JITTest, FarCallToKnownFunction) {
   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();