Fix spelling and grammar in a comment.
[oota-llvm.git] / lib / Support / Streams.cpp
index 122955ff4eb7ffd97a54a3deda0500dc8d86e3bc..cf6cfeb7fd0443c6c896efce694957e588f9cd90 100644 (file)
@@ -19,3 +19,12 @@ using namespace llvm;
 OStream llvm::cout(std::cout);
 OStream llvm::cerr(std::cerr);
 IStream llvm::cin(std::cin);
+
+namespace llvm {
+
+/// FlushStream - Function called by BaseStream to flush an ostream.
+void FlushStream(std::ostream &S) {
+  S << std::flush;
+}
+
+} // end anonymous namespace