From: Steve Reinhardt Date: Mon, 18 Jan 2016 03:18:49 +0000 (-0800) Subject: sim: fix redundant --debug-start help string X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b7ea2bc705bfae2e7719d6259cc14de95f4f991d;p=gem5.git 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. --- 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=':',