[llvm-commits] CVS: llvm/lib/ExecutionEngine/JIT/JIT.cpp

Chris Lattner lattner at cs.uiuc.edu
Fri Jan 6 22:12:19 PST 2006



Changes in directory llvm/lib/ExecutionEngine/JIT:

JIT.cpp updated: 1.58 -> 1.59
---
Log message:

wrap long line


---
Diffs of the changes:  (+2 -1)

 JIT.cpp |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)


Index: llvm/lib/ExecutionEngine/JIT/JIT.cpp
diff -u llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.58 llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.59
--- llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.58	Thu Jul 28 07:44:13 2005
+++ llvm/lib/ExecutionEngine/JIT/JIT.cpp	Sat Jan  7 00:12:07 2006
@@ -294,7 +294,8 @@
     // 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);
   }






More information about the llvm-commits mailing list