From c307c22257ef143c8e1da562bbdfdc32f47bcf59 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Sun, 2 Nov 2003 21:58:23 -0500 Subject: [PATCH] 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 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 __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()