From: Chris Lattner Date: Sat, 7 Jan 2006 06:12:07 +0000 (+0000) Subject: wrap long line X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=51e6a38b868b33fb5c3dcb3d502239affe762c80;p=oota-llvm.git wrap long line git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25139 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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); }