mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 10:50:51 +08:00
sem_aux.adb (Is_By_Reference_Type): For each components of a record type...
2014-02-18 Vincent Celier <celier@adacore.com> * sem_aux.adb (Is_By_Reference_Type): For each components of a record type, check also if the component is volatile as it may have an aspect that makes it volatile. If it is, then the record type is a by reference type. From-SVN: r207842
This commit is contained in:
parent
365c849669
commit
3b821fe9fe
@ -1,3 +1,10 @@
|
||||
2014-02-18 Vincent Celier <celier@adacore.com>
|
||||
|
||||
* sem_aux.adb (Is_By_Reference_Type): For each components of
|
||||
a record type, check also if the component is volatile as it
|
||||
may have an aspect that makes it volatile. If it is, then the
|
||||
record type is a by reference type.
|
||||
|
||||
2014-02-18 Robert Dewar <dewar@adacore.com>
|
||||
|
||||
* exp_attr.adb: Minor reformatting.
|
||||
|
@ -782,8 +782,15 @@ package body Sem_Aux is
|
||||
begin
|
||||
C := First_Component (Btype);
|
||||
while Present (C) loop
|
||||
|
||||
-- For each component, test if its type is a by reference
|
||||
-- type and if its type is volatile. Also test the component
|
||||
-- itself for being volatile. This happens for example when
|
||||
-- a Volatile aspect is added to a component.
|
||||
|
||||
if Is_By_Reference_Type (Etype (C))
|
||||
or else Is_Volatile (Etype (C))
|
||||
or else Is_Volatile (C)
|
||||
then
|
||||
return True;
|
||||
end if;
|
||||
|
Loading…
x
Reference in New Issue
Block a user