summaryrefslogtreecommitdiff
path: root/sim
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-06-05 00:45:10 -0400
committerNathan Binkert <binkertn@umich.edu>2005-06-05 00:45:10 -0400
commitfb1282de1a39412b45a48cacc4fbea953008e1cd (patch)
tree3fc965503e06eedded24a4f89d9765f8d7dc2349 /sim
parent13c005a8af79a8481879ce099b45a1f98faae165 (diff)
parent87d27637aa2e99d5218e2e5dd5b728a3d650a2e7 (diff)
downloadgem5-fb1282de1a39412b45a48cacc4fbea953008e1cd.tar.xz
Merge zizzer.eecs.umich.edu:/bk/m5
into crampon.my.domain:/z/binkertn/research/m5/head --HG-- extra : convert_revision : b0c9b044b44a1bfc4cded2ebfa240b799dd4a5a0
Diffstat (limited to 'sim')
-rw-r--r--sim/main.cc32
1 files changed, 0 insertions, 32 deletions
diff --git a/sim/main.cc b/sim/main.cc
index 066f5f4c3..a6d996d50 100644
--- a/sim/main.cc
+++ b/sim/main.cc
@@ -132,34 +132,6 @@ showBriefHelp(ostream &out)
ccprintf(out, "%s -X\n -X extract embedded files\n\n", prog);
ccprintf(out, "%s -h\n -h print short help\n\n", prog);
- ccprintf(out, "%s -H\n -H print long help\n\n", prog);
-}
-
-/// Show verbose help message. Includes parameter listing from
-/// showBriefHelp(), plus an exhaustive list of ini-file parameters
-/// and SimObjects (with their parameters).
-void
-showLongHelp(ostream &out)
-{
- showBriefHelp(out);
-
- out << endl
- << endl
- << "-----------------" << endl
- << "Global Parameters" << endl
- << "-----------------" << endl
- << endl;
-
- ParamContext::describeAllContexts(out);
-
- out << endl
- << endl
- << "-----------------" << endl
- << "Simulator Objects" << endl
- << "-----------------" << endl
- << endl;
-
- SimObjectClass::describeAllClasses(out);
}
/// Print welcome message.
@@ -292,10 +264,6 @@ main(int argc, char **argv)
showBriefHelp(cerr);
exit(1);
- case 'H':
- showLongHelp(cerr);
- exit(1);
-
case 'E':
option = getOptionString(i, argc, argv);
if (!split_first(option, var, val, '='))