[llvm-commits] [llvm] r92670 - /llvm/trunk/include/llvm/Support/FormattedStream.h

David Greene greened at obbligato.org
Mon Jan 4 17:36:31 PST 2010


Author: greened
Date: Mon Jan  4 19:36:30 2010
New Revision: 92670

URL: http://llvm.org/viewvc/llvm-project?rev=92670&view=rev
Log:

Fix a build error by adding a missing commit.

Modified:
    llvm/trunk/include/llvm/Support/FormattedStream.h

Modified: llvm/trunk/include/llvm/Support/FormattedStream.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/FormattedStream.h?rev=92670&r1=92669&r2=92670&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Support/FormattedStream.h (original)
+++ llvm/trunk/include/llvm/Support/FormattedStream.h Mon Jan  4 19:36:30 2010
@@ -144,6 +144,10 @@
 /// standard error.  Use it like: ferrs() << "foo" << "bar";
 formatted_raw_ostream &ferrs();
 
+/// fdbgs() - This returns a reference to a formatted_raw_ostream for
+/// debug output.  Use it like: fdbgs() << "foo" << "bar";
+formatted_raw_ostream &fdbgs();
+
 } // end llvm namespace
 
 





More information about the llvm-commits mailing list