1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

no need for endl

llvm-svn: 9736
This commit is contained in:
Chris Lattner 2003-11-05 19:53:32 +00:00
parent 352ad83271
commit 2df84a62cd

View File

@ -219,7 +219,7 @@ static inline void readBlock(const unsigned char *&Buf,
#ifdef DEBUG_OUTPUT
bool Result = read(Buf, EndBuf, Type) || read(Buf, EndBuf, Size);
std::cerr << "StartLoc = " << ((unsigned)Buf & 4095)
<< " Type = " << Type << " Size = " << Size << std::endl;
<< " Type = " << Type << " Size = " << Size << "\n";
if (Result) throw Error_read;
#else
if (read(Buf, EndBuf, Type) || read(Buf, EndBuf, Size)) throw Error_read;