1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Need a \n.

llvm-svn: 58788
This commit is contained in:
Evan Cheng 2008-11-06 01:18:29 +00:00
parent cea9dfa11f
commit 3e727721d0

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