mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 02:33:53 +00:00
Switch to using the JIT now that it can directly call zeroarg functions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15795 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7c45d7898b
commit
95f114c5a9
@ -94,7 +94,7 @@ int main() {
|
||||
|
||||
// Now we create the JIT.
|
||||
ExistingModuleProvider* MP = new ExistingModuleProvider(M);
|
||||
ExecutionEngine* EE = ExecutionEngine::create(MP, true);
|
||||
ExecutionEngine* EE = ExecutionEngine::create(MP, false);
|
||||
|
||||
std::cout << "We just constructed this LLVM module:\n\n" << *M;
|
||||
std::cout << "\n\nRunning foo: " << std::flush;
|
||||
|
@ -94,7 +94,7 @@ int main() {
|
||||
|
||||
// Now we create the JIT.
|
||||
ExistingModuleProvider* MP = new ExistingModuleProvider(M);
|
||||
ExecutionEngine* EE = ExecutionEngine::create(MP, true);
|
||||
ExecutionEngine* EE = ExecutionEngine::create(MP, false);
|
||||
|
||||
std::cout << "We just constructed this LLVM module:\n\n" << *M;
|
||||
std::cout << "\n\nRunning foo: " << std::flush;
|
||||
|
@ -94,7 +94,7 @@ int main() {
|
||||
|
||||
// Now we create the JIT.
|
||||
ExistingModuleProvider* MP = new ExistingModuleProvider(M);
|
||||
ExecutionEngine* EE = ExecutionEngine::create(MP, true);
|
||||
ExecutionEngine* EE = ExecutionEngine::create(MP, false);
|
||||
|
||||
std::cout << "We just constructed this LLVM module:\n\n" << *M;
|
||||
std::cout << "\n\nRunning foo: " << std::flush;
|
||||
|
Loading…
x
Reference in New Issue
Block a user