aboutsummaryrefslogtreecommitdiffstats
path: root/tools/gccas/gccas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gccas/gccas.cpp')
-rw-r--r--tools/gccas/gccas.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp
index 974e9e2..13a4a41 100644
--- a/tools/gccas/gccas.cpp
+++ b/tools/gccas/gccas.cpp
@@ -102,12 +102,12 @@ int main(int argc, char **argv) {
// Parse the file now...
M.reset(ParseAssemblyFile(InputFilename));
} catch (const ParseException &E) {
- cerr << E.getMessage() << "\n";
+ cerr << argv[0] << ": " << E.getMessage() << "\n";
return 1;
}
if (M.get() == 0) {
- cerr << "assembly didn't read correctly.\n";
+ cerr << argv[0] << ": assembly didn't read correctly.\n";
return 1;
}
@@ -124,7 +124,7 @@ int main(int argc, char **argv) {
std::ofstream Out(OutputFilename.c_str(), std::ios::out);
if (!Out.good()) {
- cerr << "Error opening " << OutputFilename << "!\n";
+ cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
return 1;
}