diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-07 20:05:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-07 20:05:43 +0000 |
commit | c1969de3e96b421d0745e340cc48f70911ed83d6 (patch) | |
tree | 89f40822c36bb523f4fcd6938d40d62246724621 /llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp | |
parent | be6bb8efacde84870c38d747bf818183ffbce0e1 (diff) | |
download | bcm5719-llvm-c1969de3e96b421d0745e340cc48f70911ed83d6.tar.gz bcm5719-llvm-c1969de3e96b421d0745e340cc48f70911ed83d6.zip |
fix 80 col violations
llvm-svn: 48019
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp b/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp index d5b2696269d..5908e434516 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); } |