From: Nathan Binkert Date: Mon, 3 Nov 2003 02:58:23 +0000 (-0500) Subject: Fix a bug in the pseudo instruction context X-Git-Tag: m5_1.0_beta2~281^2~9^2~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c307c22257ef143c8e1da562bbdfdc32f47bcf59;p=gem5.git Fix a bug in the pseudo instruction context arch/alpha/pseudo_inst.cc: Don't forget the descriptions --HG-- extra : convert_revision : f208ea24d5b34283e962916cb4c7dff976406285 --- 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()