mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-23 01:24:30 +00:00
Disable all old-JIT unit tests on PowerPC.
These tests were all failing since the old JIT doesn't work for PowerPC (any more), and there are no plans to attempt to fix it again (instead, work focuses on MCJIT). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167133 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -65,8 +65,8 @@ void createModule2(LLVMContext &Context2, Module *&M2, Function *&FooF2) {
|
||||
FooF2 = M2->getFunction("foo2");
|
||||
}
|
||||
|
||||
// ARM tests disabled pending fix for PR10783.
|
||||
#if !defined(__arm__)
|
||||
// ARM and PowerPC tests disabled pending fix for PR10783.
|
||||
#if !defined(__arm__) && !defined(__powerpc__)
|
||||
|
||||
TEST(MultiJitTest, EagerMode) {
|
||||
LLVMContext Context1;
|
||||
@ -176,6 +176,6 @@ TEST(MultiJitTest, JitPool) {
|
||||
#endif
|
||||
EXPECT_TRUE(sa == fa);
|
||||
}
|
||||
#endif // !defined(__arm__)
|
||||
#endif // !defined(__arm__) && !defined(__powerpc__)
|
||||
|
||||
} // anonymous namespace
|
||||
|
Reference in New Issue
Block a user