diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-15 23:33:14 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-15 23:33:14 +0000 |
commit | e017fd1b20ddc2491974a5c07f1538f89d91ce43 (patch) | |
tree | 3ec843a097a74be238cba490d6a1fe85152f7d87 /tools/llvm-link/llvm-link.cpp | |
parent | e87b2abe91fc44bb9875188d80e3a43a9dfc41eb (diff) | |
download | external_llvm-e017fd1b20ddc2491974a5c07f1538f89d91ce43.zip external_llvm-e017fd1b20ddc2491974a5c07f1538f89d91ce43.tar.gz external_llvm-e017fd1b20ddc2491974a5c07f1538f89d91ce43.tar.bz2 |
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
Diffstat (limited to 'tools/llvm-link/llvm-link.cpp')
-rw-r--r-- | tools/llvm-link/llvm-link.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-link/llvm-link.cpp b/tools/llvm-link/llvm-link.cpp index 4111423..b850ffc 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; |