summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2009-10-20 04:09:50 +0000
committerNick Lewycky <nicholas@mxc.ca>2009-10-20 04:09:50 +0000
commit13555eae17991ab1080774947c35af9f4cc62cea (patch)
tree1dad4e00592816bfd0ca58e4b26c74e0279d8fb4 /unittests
parent9a6d88d38b974f36642700c4b0f3e725c4fde450 (diff)
downloadllvm-13555eae17991ab1080774947c35af9f4cc62cea.tar.gz
llvm-13555eae17991ab1080774947c35af9f4cc62cea.tar.bz2
llvm-13555eae17991ab1080774947c35af9f4cc62cea.tar.xz
Correct test for PowerPC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84595 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/ExecutionEngine/JIT/JITTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/ExecutionEngine/JIT/JITTest.cpp b/unittests/ExecutionEngine/JIT/JITTest.cpp
index c1629100e0..814aafcfb4 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__) && !defined(__ppc__)
+#if !defined(__arm__) && !defined(__powerpc__)
// Test a function C which calls A and B which call each other.
TEST_F(JITTest, NonLazyCompilationStillNeedsStubs) {
TheJIT->DisableLazyCompilation();