Perform debug outputs with ->dump() instead of <<

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2152 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-04-07 22:34:44 +00:00
parent 06272dcfb2
commit 5bdf161418
2 changed files with 12 additions and 10 deletions

View File

@ -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 != "-") {

View File

@ -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 != "-") {