From c307c22257ef143c8e1da562bbdfdc32f47bcf59 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Sun, 2 Nov 2003 21:58:23 -0500 Subject: [PATCH 1/2] Fix a bug in the pseudo instruction context arch/alpha/pseudo_inst.cc: Don't forget the descriptions --HG-- extra : convert_revision : f208ea24d5b34283e962916cb4c7dff976406285 --- arch/alpha/pseudo_inst.cc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/arch/alpha/pseudo_inst.cc b/arch/alpha/pseudo_inst.cc index d5d00bb180..50b7d1aafd 100644 --- a/arch/alpha/pseudo_inst.cc +++ b/arch/alpha/pseudo_inst.cc @@ -126,8 +126,12 @@ namespace AlphaPseudo Context context("PseudoInsts"); - Param __statistics(&context, "statistics", "yes"); - Param __checkpoint(&context, "checkpoint", "yes"); + Param __statistics(&context, "statistics", + "enable the statistics pseudo instructions", + yes); + Param __checkpoint(&context, "checkpoint", + "enable the checkpoint pseudo instructions", + yes); void Context::checkParams() From 491fb95919f05220c05bb77fb82376fb9bc7dc76 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Sun, 2 Nov 2003 22:12:20 -0500 Subject: [PATCH 2/2] ok, let's get this right arch/alpha/pseudo_inst.cc: yes is not a real value, use true --HG-- extra : convert_revision : 30b998ae6f13641d70c9158777a12b00df8742fe --- arch/alpha/pseudo_inst.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/alpha/pseudo_inst.cc b/arch/alpha/pseudo_inst.cc index 50b7d1aafd..f8e0036ba2 100644 --- a/arch/alpha/pseudo_inst.cc +++ b/arch/alpha/pseudo_inst.cc @@ -128,10 +128,10 @@ namespace AlphaPseudo Param __statistics(&context, "statistics", "enable the statistics pseudo instructions", - yes); + true); Param __checkpoint(&context, "checkpoint", "enable the checkpoint pseudo instructions", - yes); + true); void Context::checkParams()