wrap long line
authorChris Lattner <sabre@nondot.org>
Sat, 7 Jan 2006 06:12:07 +0000 (06:12 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 7 Jan 2006 06:12:07 +0000 (06:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25139 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/JIT/JIT.cpp

index 1e879a9166bdbd245989f503d33e9051b1b7e3ca..5eeaea576f8828ab3ac11fa88b0ce6cd172ba704 100644 (file)
@@ -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);
   }