diff options
Diffstat (limited to 'gcc/ada/s-rident.ads')
-rw-r--r-- | gcc/ada/s-rident.ads | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/ada/s-rident.ads b/gcc/ada/s-rident.ads index 409adc66c0f..f64ab2772d5 100644 --- a/gcc/ada/s-rident.ads +++ b/gcc/ada/s-rident.ads @@ -116,6 +116,7 @@ package System.Rident is No_Implementation_Pragmas, -- GNAT No_Implementation_Restrictions, -- GNAT No_Elaboration_Code, -- GNAT + No_Obsolescent_Features, -- Ada 2005 AI-368 -- The following cases require a parameter value @@ -166,7 +167,7 @@ package System.Rident is -- All restrictions (excluding only Not_A_Restriction_Id) subtype All_Boolean_Restrictions is Restriction_Id range - Simple_Barriers .. No_Elaboration_Code; + Simple_Barriers .. No_Obsolescent_Features; -- All restrictions which do not take a parameter subtype Partition_Boolean_Restrictions is All_Boolean_Restrictions range @@ -177,7 +178,7 @@ package System.Rident is -- case of Boolean restrictions. subtype Cunit_Boolean_Restrictions is All_Boolean_Restrictions range - Immediate_Reclamation .. No_Elaboration_Code; + Immediate_Reclamation .. No_Obsolescent_Features; -- Boolean restrictions that are not checked for partition consistency -- and that thus apply only to the current unit. Note that for these -- restrictions, the compiler does not apply restrictions found in |