From: Chris Lattner Date: Sun, 7 Apr 2002 22:34:44 +0000 (+0000) Subject: Perform debug outputs with ->dump() instead of << X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5bdf1614182c679c0d0a50f28f5810ee14110800;p=oota-llvm.git Perform debug outputs with ->dump() instead of << git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2152 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/link/link.cpp b/tools/link/link.cpp index ec77b42efff..c4be6715cff 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 @@ -56,7 +55,7 @@ static inline std::auto_ptr 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 != "-") { diff --git a/tools/llvm-link/llvm-link.cpp b/tools/llvm-link/llvm-link.cpp index ec77b42efff..c4be6715cff 100644 --- a/tools/llvm-link/llvm-link.cpp +++ b/tools/llvm-link/llvm-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 @@ -56,7 +55,7 @@ static inline std::auto_ptr 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 != "-") {