1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

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 4ca0e75843
commit 6de2000f8f

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