summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine
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
commit51e6a38b868b33fb5c3dcb3d502239affe762c80 (patch)
treeb57a394b3eec7ed5c125fdd2feb48b43a6184e38 /lib/ExecutionEngine
parentf11f07b81ab6dcbe87d09f2036dcaa3cf679039a (diff)
downloadllvm-51e6a38b868b33fb5c3dcb3d502239affe762c80.tar.gz
llvm-51e6a38b868b33fb5c3dcb3d502239affe762c80.tar.bz2
llvm-51e6a38b868b33fb5c3dcb3d502239affe762c80.tar.xz
wrap long line
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25139 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r--lib/ExecutionEngine/JIT/JIT.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp
index 1e879a9166..5eeaea576f 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);
}