Fix a bug in the pseudo instruction context
authorNathan Binkert <binkertn@umich.edu>
Mon, 3 Nov 2003 02:58:23 +0000 (21:58 -0500)
committerNathan Binkert <binkertn@umich.edu>
Mon, 3 Nov 2003 02:58:23 +0000 (21:58 -0500)
arch/alpha/pseudo_inst.cc:
    Don't forget the descriptions

--HG--
extra : convert_revision : f208ea24d5b34283e962916cb4c7dff976406285

arch/alpha/pseudo_inst.cc

index d5d00bb18043b1def74f993413429d9d90c3840b..50b7d1aafd5388396afd5bca937a27ede1175ab9 100644 (file)
@@ -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()