mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-26 09:18:56 +00:00
fix 80 col violations
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48019 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -589,7 +589,8 @@ bool JITEmitter::finishFunction(MachineFunction &F) {
|
|||||||
ActualSize);
|
ActualSize);
|
||||||
BufferEnd = BufferBegin+ActualSize;
|
BufferEnd = BufferBegin+ActualSize;
|
||||||
unsigned char* FrameRegister = DE->EmitDwarfTable(F, *this, FnStart, FnEnd);
|
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;
|
BufferBegin = SavedBufferBegin;
|
||||||
BufferEnd = SavedBufferEnd;
|
BufferEnd = SavedBufferEnd;
|
||||||
CurBufferPtr = SavedCurBufferPtr;
|
CurBufferPtr = SavedCurBufferPtr;
|
||||||
|
@@ -295,7 +295,8 @@ namespace {
|
|||||||
|
|
||||||
/// startExceptionTable - Use startFunctionBody to allocate memory for the
|
/// startExceptionTable - Use startFunctionBody to allocate memory for the
|
||||||
/// function's exception table.
|
/// 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);
|
return startFunctionBody(F, ActualSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user