diff options
Diffstat (limited to 'gcc/ada/alloc.ads')
-rw-r--r-- | gcc/ada/alloc.ads | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gcc/ada/alloc.ads b/gcc/ada/alloc.ads index 18a2be62157..e175f8b433d 100644 --- a/gcc/ada/alloc.ads +++ b/gcc/ada/alloc.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2012, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2014, 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- -- @@ -64,14 +64,17 @@ package Alloc is File_Name_Chars_Initial : constant := 10_000; -- Osint File_Name_Chars_Increment : constant := 100; - Inlined_Bodies_Initial : constant := 50; -- Inline - Inlined_Bodies_Increment : constant := 200; + In_Out_Warnings_Initial : constant := 100; -- Sem_Warn + In_Out_Warnings_Increment : constant := 100; + + Ignored_Ghost_Units_Initial : constant := 20; -- Sem_Util + Ignored_Ghost_Units_Increment : constant := 50; Inlined_Initial : constant := 100; -- Inline Inlined_Increment : constant := 100; - In_Out_Warnings_Initial : constant := 100; -- Sem_Warn - In_Out_Warnings_Increment : constant := 100; + Inlined_Bodies_Initial : constant := 50; -- Inline + Inlined_Bodies_Increment : constant := 200; Interp_Map_Initial : constant := 200; -- Sem_Type Interp_Map_Increment : constant := 100; |