File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -690,7 +690,7 @@ static void jl_setup_module(Module *m, bool add)
690
690
#endif
691
691
#ifdef LLVM37
692
692
if (jl_ExecutionEngine) {
693
- m->setDataLayout (jl_ExecutionEngine->getDataLayout ()-> getStringRepresentation ());
693
+ m->setDataLayout (jl_ExecutionEngine->getDataLayout (). getStringRepresentation ());
694
694
m->setTargetTriple (jl_TargetMachine->getTargetTriple ().str ());
695
695
}
696
696
#elif LLVM36
@@ -5575,8 +5575,8 @@ extern "C" void jl_init_codegen(void)
5575
5575
mbuilder = new MDBuilder (getGlobalContext ());
5576
5576
5577
5577
#ifdef LLVM37
5578
- m->setDataLayout (jl_ExecutionEngine->getDataLayout ()-> getStringRepresentation ());
5579
- engine_module->setDataLayout (jl_ExecutionEngine->getDataLayout ()-> getStringRepresentation ());
5578
+ m->setDataLayout (jl_ExecutionEngine->getDataLayout (). getStringRepresentation ());
5579
+ engine_module->setDataLayout (jl_ExecutionEngine->getDataLayout (). getStringRepresentation ());
5580
5580
m->setTargetTriple (jl_TargetMachine->getTargetTriple ().str ());
5581
5581
engine_module->setTargetTriple (jl_TargetMachine->getTargetTriple ().str ());
5582
5582
#elif LLVM36
You can’t perform that action at this time.
0 commit comments