From b7ea2bc705bfae2e7719d6259cc14de95f4f991d Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Sun, 17 Jan 2016 19:18:49 -0800 Subject: [PATCH] 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. --- src/python/m5/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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=':',