commit | b2455d2907541391f396ae4eecd5814aecb6ce4d | [log] [tgz] |
---|---|---|
author | Nick Lewycky <nicholas@mxc.ca> | Tue Oct 20 04:09:50 2009 +0000 |
committer | Nick Lewycky <nicholas@mxc.ca> | Tue Oct 20 04:09:50 2009 +0000 |
tree | 1dad4e00592816bfd0ca58e4b26c74e0279d8fb4 | |
parent | a3a4de41a79969ce6e6ac96facfa9d4a01c5e7f1 [diff] [blame] |
Correct test for PowerPC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84595 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/unittests/ExecutionEngine/JIT/JITTest.cpp b/unittests/ExecutionEngine/JIT/JITTest.cpp index c162910..814aafc 100644 --- a/unittests/ExecutionEngine/JIT/JITTest.cpp +++ b/unittests/ExecutionEngine/JIT/JITTest.cpp
@@ -166,7 +166,7 @@ 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();