no need for endl


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9736 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Bytecode/Reader/ReaderInternals.h b/lib/Bytecode/Reader/ReaderInternals.h
index 79c5a0d..c890545 100644
--- a/lib/Bytecode/Reader/ReaderInternals.h
+++ b/lib/Bytecode/Reader/ReaderInternals.h
@@ -219,7 +219,7 @@
 #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;