aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/sem_ch13.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2014-08-01 12:13:54 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2014-08-01 12:13:54 +0200
commit7b4ebba52333641f9f09c8079e1d73e9f638083f (patch)
tree5b6f5e56219ca55925542658affca1b3131a869b /gcc/ada/sem_ch13.adb
parent798595680bb04dc570d2d6a46322c35c0de3e482 (diff)
downloadgcc-7b4ebba52333641f9f09c8079e1d73e9f638083f.zip
gcc-7b4ebba52333641f9f09c8079e1d73e9f638083f.tar.gz
gcc-7b4ebba52333641f9f09c8079e1d73e9f638083f.tar.bz2
[multiple changes]
2014-08-01 Robert Dewar <dewar@adacore.com> * sem_ch7.adb, einfo.adb, einfo.ads, sem_ch13.adb: Minor change of identifier name. 2014-08-01 Hristian Kirtchev <kirtchev@adacore.com> * sem_ch3.adb (Analyze_Object_Contract): Enable the volatility checks when the related variable comes from source. * sem_res.adb (Resolve_Actuals): Enable the volatility checks when the related actual parameter comes from source. Update comment. * freeze.adb (Freeze_Record_Type): Do not freeze the designated type of an array of pointers when the designated type is class-wide and its root type is the record being currently frozen. 2014-08-01 Ed Schonberg <schonberg@adacore.com> * sem_ch5.adb (Analyze_Iterator_Specification): Preserve Ekind of renaming declaration created for domain of iteration. * sem_aggr.adb (Resolve_Array_Aggregate): Better placement for error messages on aggregates whose index subtypes have predicates. The new placement avoids posting messages on previous subtype declarations rather than on the aggregate itself. * sem_disp.adb (Is_Inherited_Public_Operation): New predicate for Add_Dispatching_Operation, to handle properly the overriding of the predefined operations on controlled types, when the partial view of a type is not visibly controlled. 2014-08-01 Ben Brosgol <brosgol@adacore.com> * gnat_ugn.texi: Add tutorial on portable fixed-point types as an appendix. From-SVN: r213446
Diffstat (limited to 'gcc/ada/sem_ch13.adb')
-rw-r--r--gcc/ada/sem_ch13.adb12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/ada/sem_ch13.adb b/gcc/ada/sem_ch13.adb
index 06d5752..76c7a70 100644
--- a/gcc/ada/sem_ch13.adb
+++ b/gcc/ada/sem_ch13.adb
@@ -9981,13 +9981,13 @@ package body Sem_Ch13 is
and then Is_Non_Overridden_Or_Null_Procedure (Prim)
and then not Fully_Conformant (Prim, Subp_Id)
then
- Set_Is_Hidden_Non_Overridden_Subprogram (Prim);
- Set_Is_Immediately_Visible (Prim, False);
- Set_Is_Potentially_Use_Visible (Prim, False);
+ Set_Is_Hidden_Non_Overridden_Subpgm (Prim);
+ Set_Is_Immediately_Visible (Prim, False);
+ Set_Is_Potentially_Use_Visible (Prim, False);
- Set_Is_Hidden_Non_Overridden_Subprogram (Subp_Id);
- Set_Is_Immediately_Visible (Subp_Id, False);
- Set_Is_Potentially_Use_Visible (Subp_Id, False);
+ Set_Is_Hidden_Non_Overridden_Subpgm (Subp_Id);
+ Set_Is_Immediately_Visible (Subp_Id, False);
+ Set_Is_Potentially_Use_Visible (Subp_Id, False);
end if;
Next_Elmt (Prim_Elmt);