summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine
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
parentbe6bb8efacde84870c38d747bf818183ffbce0e1 (diff)
downloadbcm5719-llvm-c1969de3e96b421d0745e340cc48f70911ed83d6.tar.gz
bcm5719-llvm-c1969de3e96b421d0745e340cc48f70911ed83d6.zip
fix 80 col violations
llvm-svn: 48019
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r--llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp3
-rw-r--r--llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp3
2 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp b/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp
index 09c60d416ba..b675811e437 100644
--- a/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp
+++ b/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp
@@ -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;
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);
}
OpenPOWER on IntegriCloud