summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Bytecode
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-11-05 19:53:32 +0000
committerChris Lattner <sabre@nondot.org>2003-11-05 19:53:32 +0000
commitc3d6f21bbe6b009b1085bf203ca62718c8ece43c (patch)
treedd3877e3eddf1cfbb7cbe7557cca798de85f4518 /llvm/lib/Bytecode
parentb36e8a1a2e4e710161e09999f70f0b3fac6c1bb7 (diff)
downloadbcm5719-llvm-c3d6f21bbe6b009b1085bf203ca62718c8ece43c.tar.gz
bcm5719-llvm-c3d6f21bbe6b009b1085bf203ca62718c8ece43c.zip
no need for endl
llvm-svn: 9736
Diffstat (limited to 'llvm/lib/Bytecode')
-rw-r--r--llvm/lib/Bytecode/Reader/ReaderInternals.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Reader/ReaderInternals.h b/llvm/lib/Bytecode/Reader/ReaderInternals.h
index 79c5a0d9a63..c8905454e67 100644
--- a/llvm/lib/Bytecode/Reader/ReaderInternals.h
+++ b/llvm/lib/Bytecode/Reader/ReaderInternals.h
@@ -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;
OpenPOWER on IntegriCloud