diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-30 15:57:09 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-30 15:57:09 +0200 |
commit | dff99e1a52a750cb5c1be4e5f0ccb1567e0ca015 (patch) | |
tree | 7cb1ff0e6c6dc2fb39501b599bcc0e9943641376 /gcc/ada/sem_util.adb | |
parent | 63be2a5ab4f84b257cb17d3a8f16bc56ff8927bc (diff) | |
download | gcc-dff99e1a52a750cb5c1be4e5f0ccb1567e0ca015.tar.gz |
[multiple changes]
2011-08-30 Hristian Kirtchev <kirtchev@adacore.com>
* sem_ch12.adb (Check_Private_View): Exchange the private and full view
of a designated type when the related access type is an actual in an
instance. This ensures that the full view of designated type is
available when inside the body of the instance.
2011-08-30 Ed Schonberg <schonberg@adacore.com>
* sem_util.adb (May_Be_Lvalue): To determine whether a reference may be
in a position to be modified, a slice is treated like an indexed
component.
From-SVN: r178308
Diffstat (limited to 'gcc/ada/sem_util.adb')
-rw-r--r-- | gcc/ada/sem_util.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/sem_util.adb b/gcc/ada/sem_util.adb index 5306ec6bbd2..4b48a5ab505 100644 --- a/gcc/ada/sem_util.adb +++ b/gcc/ada/sem_util.adb @@ -9044,7 +9044,7 @@ package body Sem_Util is -- or slice is an lvalue, except if it is an access type, where we -- have an implicit dereference. - when N_Indexed_Component => + when N_Indexed_Component | N_Slice => if N /= Prefix (P) or else (Present (Etype (N)) and then Is_Access_Type (Etype (N))) then |