mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 18:24:23 +00:00
[SystemZ] Set up JIT/MCJIT test cases
This patch adds the necessary configuration bits and #ifdef's to set up the JIT/MCJIT test cases for SystemZ. Like other recent targets, we do fully support MCJIT, but do not support the old JIT at all. Set up the lit config files accordingly, and disable old-JIT unit tests. Patch by Richard Sandiford. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181207 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -35,8 +35,8 @@ using namespace llvm;
|
||||
|
||||
namespace {
|
||||
|
||||
// Tests on ARM and PowerPC disabled as we're running the old jit
|
||||
#if !defined(__arm__) && !defined(__powerpc__)
|
||||
// Tests on ARM, PowerPC and SystemZ disabled as we're running the old jit
|
||||
#if !defined(__arm__) && !defined(__powerpc__) && !defined(__s390__)
|
||||
|
||||
Function *makeReturnGlobal(std::string Name, GlobalVariable *G, Module *M) {
|
||||
std::vector<Type*> params;
|
||||
@ -826,7 +826,7 @@ TEST(LazyLoadedJITTest, EagerCompiledRecursionThroughGhost) {
|
||||
(intptr_t)TheJIT->getPointerToFunction(recur1IR));
|
||||
EXPECT_EQ(3, recur1(4));
|
||||
}
|
||||
#endif // !defined(__arm__) && !defined(__powerpc__)
|
||||
#endif // !defined(__arm__) && !defined(__powerpc__) && !defined(__s390__)
|
||||
|
||||
// This code is copied from JITEventListenerTest, but it only runs once for all
|
||||
// the tests in this directory. Everything seems fine, but that's strange
|
||||
|
Reference in New Issue
Block a user