diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2011-05-07 07:38:36 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2011-05-07 07:38:36 -0500 |
commit | ffaef1446617a28254c55b735454660f22e987d6 (patch) | |
tree | 2a50fa50aad073eebfcbe56507e949ec2eaea90a /src/python/m5 | |
parent | b8889a96b38993784ef066c8abcd97a1cf1c128c (diff) | |
download | gem5-ffaef1446617a28254c55b735454660f22e987d6.tar.xz |
Trace: Remove the options trace-help and trace-flags
The options trace-help and trace-flags are no longer required. In there place,
the options debug-help and debug-flags have been provided.
Diffstat (limited to 'src/python/m5')
-rw-r--r-- | src/python/m5/main.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/python/m5/main.py b/src/python/m5/main.py index b0034c10d..85a49afcb 100644 --- a/src/python/m5/main.py +++ b/src/python/m5/main.py @@ -106,10 +106,6 @@ def parse_options(): # Tracing options group("Trace Options") - option("--trace-help", action='store_true', - help="Print help on trace flags") - option("--trace-flags", metavar="FLAG[,FLAG]", action='append', split=',', - help="Sets the flags for tracing (-FLAG disables a flag)") option("--trace-start", metavar="TIME", type='int', help="Start tracing at TIME (must be in ticks)") option("--trace-file", metavar="FILE", default="cout", |