fix 80 col violations
authorChris Lattner <sabre@nondot.org>
Fri, 7 Mar 2008 20:05:43 +0000 (20:05 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 7 Mar 2008 20:05:43 +0000 (20:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48019 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/JIT/JITEmitter.cpp
lib/ExecutionEngine/JIT/JITMemoryManager.cpp

index 09c60d416baa1513e2bcc47d0ecc71775498ae67..b675811e437fd9b0f8dbd3df653275b221d331e3 100644 (file)
@@ -589,7 +589,8 @@ bool JITEmitter::finishFunction(MachineFunction &F) {
                                                              ActualSize);
     BufferEnd = BufferBegin+ActualSize;
     unsigned char* FrameRegister = DE->EmitDwarfTable(F, *this, FnStart, FnEnd);
-    MemMgr->endExceptionTable(F.getFunction(), BufferBegin, CurBufferPtr, FrameRegister);
+    MemMgr->endExceptionTable(F.getFunction(), BufferBegin, CurBufferPtr,
+                              FrameRegister);
     BufferBegin = SavedBufferBegin;
     BufferEnd = SavedBufferEnd;
     CurBufferPtr = SavedCurBufferPtr;
index d5b2696269d9ba66a833e15e8ec0d182ca9d8046..5908e434516ada4473a87793fa4ee7596ba54708 100644 (file)
@@ -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);
     }