summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2003-11-02 21:58:23 -0500
committerNathan Binkert <binkertn@umich.edu>2003-11-02 21:58:23 -0500
commitc307c22257ef143c8e1da562bbdfdc32f47bcf59 (patch)
tree49886e076a519570349f22f4897698a7066d948b /arch
parent136ee73a58651f5e656a1245de9cdb716926cccd (diff)
downloadgem5-c307c22257ef143c8e1da562bbdfdc32f47bcf59.tar.xz
Fix a bug in the pseudo instruction context
arch/alpha/pseudo_inst.cc: Don't forget the descriptions --HG-- extra : convert_revision : f208ea24d5b34283e962916cb4c7dff976406285
Diffstat (limited to 'arch')
-rw-r--r--arch/alpha/pseudo_inst.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/alpha/pseudo_inst.cc b/arch/alpha/pseudo_inst.cc
index d5d00bb18..50b7d1aaf 100644
--- a/arch/alpha/pseudo_inst.cc
+++ b/arch/alpha/pseudo_inst.cc
@@ -126,8 +126,12 @@ namespace AlphaPseudo
Context context("PseudoInsts");
- Param<bool> __statistics(&context, "statistics", "yes");
- Param<bool> __checkpoint(&context, "checkpoint", "yes");
+ Param<bool> __statistics(&context, "statistics",
+ "enable the statistics pseudo instructions",
+ yes);
+ Param<bool> __checkpoint(&context, "checkpoint",
+ "enable the checkpoint pseudo instructions",
+ yes);
void
Context::checkParams()