diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp index 1e879a9166b..5eeaea576f8 100644 --- a/lib/ExecutionEngine/JIT/JIT.cpp +++ b/lib/ExecutionEngine/JIT/JIT.cpp @@ -294,7 +294,8 @@ void *JIT::getOrEmitGlobalVariable(const GlobalVariable *GV) { // actually initialize the global after current function has finished // compilation. uint64_t S = getTargetData().getTypeSize(GV->getType()->getElementType()); - unsigned char A = getTargetData().getTypeAlignment(GV->getType()->getElementType()); + unsigned char A = + getTargetData().getTypeAlignment(GV->getType()->getElementType()); Ptr = MCE->allocateGlobal(S, A); state.getPendingGlobals(locked).push_back(GV); }