summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/JIT/JIT.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-01-07 06:12:07 +0000
committerChris Lattner <sabre@nondot.org>2006-01-07 06:12:07 +0000
commit31b05d0ee377445b4246043cff37efd1df0d5447 (patch)
tree8e35a3ec4abeff5c6b9df439ba4fd7ad2f00fa82 /llvm/lib/ExecutionEngine/JIT/JIT.cpp
parent608466458032013b99861f7e7ee576f3451284f3 (diff)
downloadbcm5719-llvm-31b05d0ee377445b4246043cff37efd1df0d5447.tar.gz
bcm5719-llvm-31b05d0ee377445b4246043cff37efd1df0d5447.zip
wrap long line
llvm-svn: 25139
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/JIT.cpp')
-rw-r--r--llvm/lib/ExecutionEngine/JIT/JIT.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.cpp b/llvm/lib/ExecutionEngine/JIT/JIT.cpp
index 1e879a9166b..5eeaea576f8 100644
--- a/llvm/lib/ExecutionEngine/JIT/JIT.cpp
+++ b/llvm/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);
}
OpenPOWER on IntegriCloud