diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-10-02 18:13:42 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-10-02 18:13:42 -0400 |
commit | 51c8eab7b336a6c83e545b741cb975883fe56440 (patch) | |
tree | d2650667f0a8d075eee9236e3d493231e0b69f42 | |
parent | cada0473195eacc84dbcb8edcac412cb5cbd689a (diff) | |
download | gem5-51c8eab7b336a6c83e545b741cb975883fe56440.tar.xz |
Oops, forgot to assign the option to the param context.
--HG--
extra : convert_revision : 022c3efaa3ade3fca3dfe554ececa4eeb396dc9c
-rw-r--r-- | src/python/m5/main.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/python/m5/main.py b/src/python/m5/main.py index e93ef3a36..ccd6c5807 100644 --- a/src/python/m5/main.py +++ b/src/python/m5/main.py @@ -278,6 +278,7 @@ def main(): # set tracing options objects.Trace.flags = options.trace_flags objects.Trace.start = options.trace_start + objects.Trace.cycle = options.trace_cycle objects.Trace.file = options.trace_file objects.Trace.bufsize = options.trace_circlebuf objects.Trace.dump_on_exit = options.trace_dumponexit |