diff options
author | Nathan Binkert <binkertn@umich.edu> | 2003-11-02 22:12:20 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2003-11-02 22:12:20 -0500 |
commit | 491fb95919f05220c05bb77fb82376fb9bc7dc76 (patch) | |
tree | e1bc1db2de202474cb6cc1a2937036e2a4730831 /arch/alpha | |
parent | c307c22257ef143c8e1da562bbdfdc32f47bcf59 (diff) | |
download | gem5-491fb95919f05220c05bb77fb82376fb9bc7dc76.tar.xz |
ok, let's get this right
arch/alpha/pseudo_inst.cc:
yes is not a real value, use true
--HG--
extra : convert_revision : 30b998ae6f13641d70c9158777a12b00df8742fe
Diffstat (limited to 'arch/alpha')
-rw-r--r-- | arch/alpha/pseudo_inst.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/alpha/pseudo_inst.cc b/arch/alpha/pseudo_inst.cc index 50b7d1aaf..f8e0036ba 100644 --- a/arch/alpha/pseudo_inst.cc +++ b/arch/alpha/pseudo_inst.cc @@ -128,10 +128,10 @@ namespace AlphaPseudo Param<bool> __statistics(&context, "statistics", "enable the statistics pseudo instructions", - yes); + true); Param<bool> __checkpoint(&context, "checkpoint", "enable the checkpoint pseudo instructions", - yes); + true); void Context::checkParams() |