Also check for __POWERPC__ when skipping these tests.

llvm-svn: 84482
This commit is contained in:
Daniel Dunbar 2009-10-19 09:19:32 +00:00
parent 27c4e8830b
commit b16c77cbd3
1 changed files with 1 additions and 1 deletions

View 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();