From: Dan Gohman Date: Wed, 15 Jul 2009 23:33:14 +0000 (+0000) Subject: Fix this comment to mention outs() rather than cout. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e017fd1b20ddc2491974a5c07f1538f89d91ce43;p=oota-llvm.git Fix this comment to mention outs() rather than cout. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75858 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-link/llvm-link.cpp b/tools/llvm-link/llvm-link.cpp index 41114238943..b850ffc606b 100644 --- a/tools/llvm-link/llvm-link.cpp +++ b/tools/llvm-link/llvm-link.cpp @@ -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;