aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-03-07 20:05:43 +0000
committerChris Lattner <sabre@nondot.org>2008-03-07 20:05:43 +0000
commitc1969de3e96b421d0745e340cc48f70911ed83d6 (patch)
tree89f40822c36bb523f4fcd6938d40d62246724621 /llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
parentbe6bb8efacde84870c38d747bf818183ffbce0e1 (diff)
downloadllvm-c1969de3e96b421d0745e340cc48f70911ed83d6.zip
llvm-c1969de3e96b421d0745e340cc48f70911ed83d6.tar.gz
llvm-c1969de3e96b421d0745e340cc48f70911ed83d6.tar.bz2
fix 80 col violations
llvm-svn: 48019
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp')
-rw-r--r--llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp b/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
index d5b2696..5908e43 100644
--- a/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
+++ b/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
@@ -295,7 +295,8 @@ namespace {
/// startExceptionTable - Use startFunctionBody to allocate memory for the
/// function's exception table.
- unsigned char* startExceptionTable(const Function* F, uintptr_t &ActualSize) {
+ unsigned char* startExceptionTable(const Function* F,
+ uintptr_t &ActualSize) {
return startFunctionBody(F, ActualSize);
}