summaryrefslogtreecommitdiff
path: root/tools/link
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-07 22:34:44 +0000
committerChris Lattner <sabre@nondot.org>2002-04-07 22:34:44 +0000
commit5bdf1614182c679c0d0a50f28f5810ee14110800 (patch)
tree548684b1f0128a5ef5d2858ac0332caa7f9886e2 /tools/link
parent06272dcfb277367caddb578fb7f0e1cade8c00e5 (diff)
downloadllvm-5bdf1614182c679c0d0a50f28f5810ee14110800.tar.gz
llvm-5bdf1614182c679c0d0a50f28f5810ee14110800.tar.bz2
llvm-5bdf1614182c679c0d0a50f28f5810ee14110800.tar.xz
Perform debug outputs with ->dump() instead of <<
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2152 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/link')
-rw-r--r--tools/link/link.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/tools/link/link.cpp b/tools/link/link.cpp
index ec77b42eff..c4be6715cf 100644
--- a/tools/link/link.cpp
+++ b/tools/link/link.cpp
@@ -12,7 +12,6 @@
#include "llvm/Transforms/Linker.h"
#include "llvm/Bytecode/Reader.h"
#include "llvm/Bytecode/Writer.h"
-#include "llvm/Assembly/Writer.h"
#include "llvm/Module.h"
#include "Support/CommandLine.h"
#include <fstream>
@@ -56,7 +55,7 @@ static inline std::auto_ptr<Module> LoadFile(const std::string &FN) {
if (Verbose) {
cerr << "Error opening bytecode file: '" << Filename << "'";
if (ErrorMessage.size()) cerr << ": " << ErrorMessage;
- cerr << endl;
+ cerr << "\n";
}
if (NextLibPathIdx == LibPaths.size()) break;
@@ -104,13 +103,15 @@ int main(int argc, char **argv) {
if (LinkModules(Composite.get(), M.get(), &ErrorMessage)) {
cerr << "Error linking in '" << InputFilenames[i] << "': "
- << ErrorMessage << endl;
+ << ErrorMessage << "\n";
return 1;
}
}
- if (DumpAsm)
- cerr << "Here's the assembly:\n" << Composite.get();
+ if (DumpAsm) {
+ cerr << "Here's the assembly:\n";
+ Composite.get()->dump();
+ }
ostream *Out = &cout; // Default to printing to stdout...
if (OutputFilename != "-") {