Need a \n.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58788 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2008-11-06 01:18:29 +00:00
parent 33e868ff43
commit 6863fb033a

View File

@ -970,9 +970,10 @@ bool JITEmitter::finishFunction(MachineFunction &F) {
DOUT << "0x" << (long)q << ": ";
DOUT<< std::setw(2) << std::setfill('0') << (unsigned short)*q << " ";
if (i%8==0)
DOUT<<"\n";
DOUT << '\n';
}
DOUT << std::dec;
DOUT<< '\n';
}
}
#endif