[llvm-commits] CVS: llvm/lib/Bytecode/Reader/ReaderInternals.h

Chris Lattner lattner at cs.uiuc.edu
Wed Nov 5 13:54:02 PST 2003


Changes in directory llvm/lib/Bytecode/Reader:

ReaderInternals.h updated: 1.62 -> 1.63

---
Log message:

no need for endl


---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/Bytecode/Reader/ReaderInternals.h
diff -u llvm/lib/Bytecode/Reader/ReaderInternals.h:1.62 llvm/lib/Bytecode/Reader/ReaderInternals.h:1.63
--- llvm/lib/Bytecode/Reader/ReaderInternals.h:1.62	Thu Oct 30 12:33:58 2003
+++ llvm/lib/Bytecode/Reader/ReaderInternals.h	Wed Nov  5 13:53:32 2003
@@ -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;





More information about the llvm-commits mailing list