Shorter "dump" options

This commit is contained in:
Clifford Wolf 2015-01-31 23:52:36 +01:00
parent 8dfa105255
commit fb8c755726
1 changed files with 4 additions and 4 deletions

View File

@ -430,10 +430,10 @@ struct DumpPass : public Pass {
log(" -n\n");
log(" only dump the module headers if the entire module is selected\n");
log("\n");
log(" -outfile <filename>\n");
log(" -o <filename>\n");
log(" write to the specified file.\n");
log("\n");
log(" -append <filename>\n");
log(" -a <filename>\n");
log(" like -outfile but append instead of overwrite\n");
log("\n");
}
@ -446,12 +446,12 @@ struct DumpPass : public Pass {
for (argidx = 1; argidx < args.size(); argidx++)
{
std::string arg = args[argidx];
if (arg == "-outfile" && argidx+1 < args.size()) {
if ((arg == "-o" || arg == "-outfile") && argidx+1 < args.size()) {
filename = args[++argidx];
append = false;
continue;
}
if (arg == "-append" && argidx+1 < args.size()) {
if ((arg == "-a" || arg == "-append") && argidx+1 < args.size()) {
filename = args[++argidx];
append = true;
continue;