summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/link/link.cpp11
-rw-r--r--tools/llvm-link/llvm-link.cpp11
2 files changed, 12 insertions, 10 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 != "-") {
diff --git a/tools/llvm-link/llvm-link.cpp b/tools/llvm-link/llvm-link.cpp
index ec77b42eff..c4be6715cf 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 <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 != "-") {