summaryrefslogtreecommitdiff
path: root/sim
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2005-06-04 23:13:09 -0400
committerSteve Reinhardt <stever@eecs.umich.edu>2005-06-04 23:13:09 -0400
commit8170b4308f4c614c638eb56239ea94a65d333b93 (patch)
treedb9e3ca30721b938c06cbf06ad1658152d130a1b /sim
parentb6fa3767905a54bb085a9e405cad0cffdeff2b5e (diff)
downloadgem5-8170b4308f4c614c638eb56239ea94a65d333b93.tar.xz
Get rid of broken "long help" option.
--HG-- extra : convert_revision : 8b7c646ce416d2a2a4919acbb87c0b6d65920d42
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 ed8bf9e63..b28cac15b 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, '='))