aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/alloc.ads
diff options
context:
space:
mode:
authorYannick Moy <moy@adacore.com>2012-03-30 09:26:59 +0000
committerArnaud Charlet <charlet@gcc.gnu.org>2012-03-30 11:26:59 +0200
commitce5c2061b4af3befc13438b23dad9ad138783b98 (patch)
tree08b03c8da7ffae834919fb93cf630e4f4d626687 /gcc/ada/alloc.ads
parent5b0113d67139911a6d51c1232adce252821684eb (diff)
downloadgcc-ce5c2061b4af3befc13438b23dad9ad138783b98.zip
gcc-ce5c2061b4af3befc13438b23dad9ad138783b98.tar.gz
gcc-ce5c2061b4af3befc13438b23dad9ad138783b98.tar.bz2
lib-xref-alfa.adb, [...]: Minor addition of comments and refactoring.
2012-03-30 Yannick Moy <moy@adacore.com> * lib-xref-alfa.adb, alloc.ads, lib-xref.ads: Minor addition of comments and refactoring. From-SVN: r186004
Diffstat (limited to 'gcc/ada/alloc.ads')
-rw-r--r--gcc/ada/alloc.ads5
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ada/alloc.ads b/gcc/ada/alloc.ads
index c5cad72..18a2be6 100644
--- a/gcc/ada/alloc.ads
+++ b/gcc/ada/alloc.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2012, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -157,4 +157,7 @@ package Alloc is
Xrefs_Initial : constant := 5_000; -- Cross-refs
Xrefs_Increment : constant := 300;
+ Drefs_Initial : constant := 5; -- Dereferences
+ Drefs_Increment : constant := 1_000;
+
end Alloc;