PowerPC ifdef'ing considered more complicated than one might like.

llvm-svn: 84603
This commit is contained in:
Daniel Dunbar 2009-10-20 05:33:23 +00:00
parent 87b361d3d6
commit 0d83671555

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