summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-dis/dis.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-30 19:52:14 +0000
committerChris Lattner <sabre@nondot.org>2002-07-30 19:52:14 +0000
commitdcd3ec6010dc0c592826d6811b040199426d9783 (patch)
tree29f43792089027fd17feee27b5e50f928389054c /llvm/tools/llvm-dis/dis.cpp
parent1e4867fed2df1f517e5e654fb33136197a3abdf0 (diff)
downloadbcm5719-llvm-dcd3ec6010dc0c592826d6811b040199426d9783.tar.gz
bcm5719-llvm-dcd3ec6010dc0c592826d6811b040199426d9783.zip
Print the tool name when an error comes from so that I can tell which
tool of a pipeline is having issues. llvm-svn: 3166
Diffstat (limited to 'llvm/tools/llvm-dis/dis.cpp')
-rw-r--r--llvm/tools/llvm-dis/dis.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/tools/llvm-dis/dis.cpp b/llvm/tools/llvm-dis/dis.cpp
index 13c4da3942e..bc0c55b98c6 100644
--- a/llvm/tools/llvm-dis/dis.cpp
+++ b/llvm/tools/llvm-dis/dis.cpp
@@ -50,15 +50,15 @@ int main(int argc, char **argv) {
Module *M = ParseBytecodeFile(InputFilename);
if (M == 0) {
- cerr << "bytecode didn't read correctly.\n";
+ cerr << argv[0] << ": bytecode didn't read correctly.\n";
return 1;
}
if (OutputFilename != "") { // Specified an output filename?
if (!Force && std::ifstream(OutputFilename.c_str())) {
// If force is not specified, make sure not to overwrite a file!
- cerr << "Error opening '" << OutputFilename
- << "': File exists! Sending to standard output.\n";
+ cerr << argv[0] << ": error opening '" << OutputFilename
+ << "': file exists! Sending to standard output.\n";
} else {
Out = new std::ofstream(OutputFilename.c_str());
}
@@ -81,8 +81,8 @@ int main(int argc, char **argv) {
if (!Force && std::ifstream(OutputFilename.c_str())) {
// If force is not specified, make sure not to overwrite a file!
- cerr << "Error opening '" << OutputFilename
- << "': File exists! Sending to standard output.\n";
+ cerr << argv[0] << ": error opening '" << OutputFilename
+ << "': file exists! Sending to standard output.\n";
} else {
Out = new std::ofstream(OutputFilename.c_str());
@@ -94,7 +94,7 @@ int main(int argc, char **argv) {
}
if (!Out->good()) {
- cerr << "Error opening " << OutputFilename
+ cerr << argv[0] << ": error opening " << OutputFilename
<< ": sending to stdout instead!\n";
Out = &std::cout;
}
OpenPOWER on IntegriCloud