Fix this comment to mention outs() rather than cout.
authorDan Gohman <gohman@apple.com>
Wed, 15 Jul 2009 23:33:14 +0000 (23:33 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 15 Jul 2009 23:33:14 +0000 (23:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75858 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-link/llvm-link.cpp

index 411142389434f0655de19c017047d8e6736b052f..b850ffc606bf4ae507277d975d85b9c3ee7fa4b1 100644 (file)
@@ -119,7 +119,7 @@ int main(int argc, char **argv) {
 
   if (DumpAsm) cerr << "Here's the assembly:\n" << *Composite.get();
 
-  // FIXME: cout is not binary!
+  // FIXME: outs() is not binary!
   raw_ostream *Out = &outs();  // Default to printing to stdout...
   if (OutputFilename != "-") {
     std::string ErrorInfo;