mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-26 21:20:29 +00:00
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:
parent
06272dcfb2
commit
5bdf161418
@ -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 != "-") {
|
||||
|
@ -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 != "-") {
|
||||
|
Loading…
Reference in New Issue
Block a user