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 | 0fdaa0b8f194f0ef7cec0610c50672b89bd7c17a (patch) | |
tree | 2408c8a50942b2bc8cd7a2aa4c3c23b6d43b1b7e /lib/ExecutionEngine/JIT/JITMemoryManager.cpp | |
parent | 160e08fb3e26fbd55f665a4cdaeb6b6e61cea41f (diff) |
fix 80 col violations
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48019 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/JIT/JITMemoryManager.cpp')
-rw-r--r-- | lib/ExecutionEngine/JIT/JITMemoryManager.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/JIT/JITMemoryManager.cpp b/lib/ExecutionEngine/JIT/JITMemoryManager.cpp index d5b2696269..5908e43451 100644 --- a/lib/ExecutionEngine/JIT/JITMemoryManager.cpp +++ b/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); } |