summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSteve Reinhardt <steve.reinhardt@amd.com>2016-01-17 19:18:49 -0800
committerSteve Reinhardt <steve.reinhardt@amd.com>2016-01-17 19:18:49 -0800
commitb7ea2bc705bfae2e7719d6259cc14de95f4f991d (patch)
tree137a5aede53e609849e1a8baeb029ce9a123f727 /src
parent1b6355c89574c42c5b5f8014b994cf26dae4737d (diff)
downloadgem5-b7ea2bc705bfae2e7719d6259cc14de95f4f991d.tar.xz
sim: fix redundant --debug-start help string
Just changes the metavar for --debug-start from TIME to TICK in cset 72046b9b3323 and didn't notice that the comment "must be in ticks" is now redundant.
Diffstat (limited to 'src')
-rw-r--r--src/python/m5/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/m5/main.py b/src/python/m5/main.py
index 4adf6e26b..4b3bf410c 100644
--- a/src/python/m5/main.py
+++ b/src/python/m5/main.py
@@ -102,7 +102,7 @@ def parse_options():
option("--debug-flags", metavar="FLAG[,FLAG]", action='append', split=',',
help="Sets the flags for debug output (-FLAG disables a flag)")
option("--debug-start", metavar="TICK", type='int',
- help="Start debug output at TICK (must be in ticks)")
+ help="Start debug output at TICK")
option("--debug-file", metavar="FILE", default="cout",
help="Sets the output file for debug [Default: %default]")
option("--debug-ignore", metavar="EXPR", action='append', split=':',