projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
29e3b2b
)
no need for endl
author
Chris Lattner
<sabre@nondot.org>
Wed, 5 Nov 2003 19:53:32 +0000
(19:53 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Wed, 5 Nov 2003 19:53:32 +0000
(19:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9736
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Bytecode/Reader/ReaderInternals.h
patch
|
blob
|
history
diff --git
a/lib/Bytecode/Reader/ReaderInternals.h
b/lib/Bytecode/Reader/ReaderInternals.h
index 79c5a0d9a63d630e84866ef340964875c8b9e3d5..c8905454e670c39745f97da37bd6445b0d38e961 100644
(file)
--- a/
lib/Bytecode/Reader/ReaderInternals.h
+++ b/
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;