Formatting changes. No functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101685 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2010-04-18 00:52:08 +00:00
parent 21739c1c72
commit 69c128f19d

View File

@ -1229,7 +1229,7 @@ bool JITEmitter::finishFunction(MachineFunction &F) {
// Mark code region readable and executable if it's not so already. // Mark code region readable and executable if it's not so already.
MemMgr->setMemoryExecutable(); MemMgr->setMemoryExecutable();
DEBUG( DEBUG({
if (sys::hasDisassembler()) { if (sys::hasDisassembler()) {
dbgs() << "JIT: Disassembled code:\n"; dbgs() << "JIT: Disassembled code:\n";
dbgs() << sys::disassembleBuffer(FnStart, FnEnd-FnStart, dbgs() << sys::disassembleBuffer(FnStart, FnEnd-FnStart,
@ -1257,7 +1257,7 @@ bool JITEmitter::finishFunction(MachineFunction &F) {
} }
dbgs()<< '\n'; dbgs()<< '\n';
} }
); });
if (DwarfExceptionHandling || JITEmitDebugInfo) { if (DwarfExceptionHandling || JITEmitDebugInfo) {
uintptr_t ActualSize = 0; uintptr_t ActualSize = 0;
@ -1265,9 +1265,8 @@ bool JITEmitter::finishFunction(MachineFunction &F) {
SavedBufferEnd = BufferEnd; SavedBufferEnd = BufferEnd;
SavedCurBufferPtr = CurBufferPtr; SavedCurBufferPtr = CurBufferPtr;
if (MemMgr->NeedsExactSize()) { if (MemMgr->NeedsExactSize())
ActualSize = DE->GetDwarfTableSizeInBytes(F, *this, FnStart, FnEnd); ActualSize = DE->GetDwarfTableSizeInBytes(F, *this, FnStart, FnEnd);
}
BufferBegin = CurBufferPtr = MemMgr->startExceptionTable(F.getFunction(), BufferBegin = CurBufferPtr = MemMgr->startExceptionTable(F.getFunction(),
ActualSize); ActualSize);