diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2009-01-30 19:08:13 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2009-01-30 19:08:13 -0500 |
commit | 35a85a4e86143c5bf23d5b74c14856792a0a624c (patch) | |
tree | c30a7e89241b374fd98ef49ce71828a1c225989a /src/cpu | |
parent | 0b228fc1ab7dbcf212a6d08aef8c7b7ff555a592 (diff) | |
download | gem5-35a85a4e86143c5bf23d5b74c14856792a0a624c.tar.xz |
Config: Cause a fatal() when a parameter without a default value isn't set(FS #315).
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/BaseCPU.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/BaseCPU.py b/src/cpu/BaseCPU.py index 985c415a0..f3688e991 100644 --- a/src/cpu/BaseCPU.py +++ b/src/cpu/BaseCPU.py @@ -69,7 +69,7 @@ class BaseCPU(MemObject): function_trace = Param.Bool(False, "Enable function trace") function_trace_start = Param.Tick(0, "Cycle to start function trace") - checker = Param.BaseCPU("checker CPU") + checker = Param.BaseCPU(NULL, "checker CPU") do_checkpoint_insts = Param.Bool(True, "enable checkpoint pseudo instructions") |