From: Daniel Dunbar Date: Tue, 20 Oct 2009 05:33:23 +0000 (+0000) Subject: PowerPC ifdef'ing considered more complicated than one might like. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b576beaaa8361a950fba61c5ea1f9a198fa03f38;p=oota-llvm.git PowerPC ifdef'ing considered more complicated than one might like. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84603 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/ExecutionEngine/JIT/JITTest.cpp b/unittests/ExecutionEngine/JIT/JITTest.cpp index 814aafcfb42..8f9b65ab0ba 100644 --- a/unittests/ExecutionEngine/JIT/JITTest.cpp +++ b/unittests/ExecutionEngine/JIT/JITTest.cpp @@ -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();