aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/namet.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2010-10-26 14:56:43 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2010-10-26 14:56:43 +0200
commit392314047357798f0dffb3e5582f890489a3204f (patch)
tree9c39166316aeff1da4ff9ac0bc59f9a5034ff53e /gcc/ada/namet.adb
parent329b9f810de49de85e57c8c6a1071a4063276a3a (diff)
downloadgcc-392314047357798f0dffb3e5582f890489a3204f.zip
gcc-392314047357798f0dffb3e5582f890489a3204f.tar.gz
gcc-392314047357798f0dffb3e5582f890489a3204f.tar.bz2
[multiple changes]
2010-10-26 Robert Dewar <dewar@adacore.com> * exp_ch3.adb: Fix typo, comment updates. * namet.adb: Minor comment additions. * einfo.ads: Minor comment update. 2010-10-26 Javier Miranda <miranda@adacore.com> * einfo.adb (Set_Dispatch_Table_Wrappers): Complete the assertion. 2010-10-26 Robert Dewar <dewar@adacore.com> * par.adb, par-ch13.adb (Aspect_Specifications_Present): Add Strict parameter. From-SVN: r165955
Diffstat (limited to 'gcc/ada/namet.adb')
-rw-r--r--gcc/ada/namet.adb11
1 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ada/namet.adb b/gcc/ada/namet.adb
index 63b7104..2842dfd 100644
--- a/gcc/ada/namet.adb
+++ b/gcc/ada/namet.adb
@@ -140,9 +140,14 @@ package body Namet is
Verbosity : constant Int range 1 .. 3 := 1;
pragma Warnings (Off, Verbosity);
- -- 1 => print basic summary information
- -- 2 => in addition print number of entries per hash chain
- -- 3 => in addition print content of entries
+ -- This constant indicates the level of verbosity in the output from
+ -- this procedure. Currently this can only be changed by editing the
+ -- declaration above and recompiling. That's good enough in practice,
+ -- since we very rarely need to use this debug option. Settings are:
+ --
+ -- 1 => print basic summary information
+ -- 2 => in addition print number of entries per hash chain
+ -- 3 => in addition print content of entries
Zero : constant Int := Character'Pos ('0');