ok, let's get this right
authorNathan Binkert <binkertn@umich.edu>
Mon, 3 Nov 2003 03:12:20 +0000 (22:12 -0500)
committerNathan Binkert <binkertn@umich.edu>
Mon, 3 Nov 2003 03:12:20 +0000 (22:12 -0500)
arch/alpha/pseudo_inst.cc:
    yes is not a real value, use true

--HG--
extra : convert_revision : 30b998ae6f13641d70c9158777a12b00df8742fe

arch/alpha/pseudo_inst.cc

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