summaryrefslogtreecommitdiff
path: root/gcc/ada/sem_res.adb
diff options
context:
space:
mode:
authorbstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4>2012-03-08 10:11:09 +0000
committerbstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4>2012-03-08 10:11:09 +0000
commit6195c0dd4e15f50ac89491b48e050751f8231304 (patch)
tree1f49de2cfcd902f18c22b5539315d7b0fb4db972 /gcc/ada/sem_res.adb
parentd7ce7f9586bca838e0dcc7e39100ffe6edcd74f3 (diff)
downloadgcc-6195c0dd4e15f50ac89491b48e050751f8231304.tar.gz
2012-03-08 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk [future 4.8] rev 185094 using svnmerge 2011-03-08 Basile Starynkevitch <basile@starynkevitch.net> [gcc/] * melt-build.tpl (meltframe.args): Add -Iinclude-fixed if it exists. * melt-build.mk: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@185096 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/sem_res.adb')
-rw-r--r--gcc/ada/sem_res.adb30
1 files changed, 23 insertions, 7 deletions
diff --git a/gcc/ada/sem_res.adb b/gcc/ada/sem_res.adb
index 1b2eef0a90d..46a8b194853 100644
--- a/gcc/ada/sem_res.adb
+++ b/gcc/ada/sem_res.adb
@@ -3968,6 +3968,20 @@ package body Sem_Res is
Error_Msg_N
("invalid implicit conversion for access parameter", A);
end if;
+
+ -- If the actual is an access selected component of a variable,
+ -- the call may modify its designated object. It is reasonable
+ -- to treat this as a potential modification of the enclosing
+ -- record, to prevent spurious warnings that it should be
+ -- declared as a constant, because intuitively programmers
+ -- regard the designated subcomponent as part of the record.
+
+ if Nkind (A) = N_Selected_Component
+ and then Is_Entity_Name (Prefix (A))
+ and then not Is_Constant_Object (Entity (Prefix (A)))
+ then
+ Note_Possible_Modification (A, Sure => False);
+ end if;
end if;
-- Check bad case of atomic/volatile argument (RM C.6(12))
@@ -5597,6 +5611,15 @@ package body Sem_Res is
and then Has_Pragma_Inline_Always (Nam)
and then Nkind (Unit_Declaration_Node (Nam)) = N_Subprogram_Declaration
and then Present (Body_To_Inline (Unit_Declaration_Node (Nam)))
+ and then not Debug_Flag_Dot_K
+ then
+ null;
+
+ elsif Is_Inlined (Nam)
+ and then Has_Pragma_Inline (Nam)
+ and then Nkind (Unit_Declaration_Node (Nam)) = N_Subprogram_Declaration
+ and then Present (Body_To_Inline (Unit_Declaration_Node (Nam)))
+ and then Debug_Flag_Dot_K
then
null;
@@ -8264,13 +8287,6 @@ package body Sem_Res is
begin
if not Alfa_Mode then
- -- If expansion is enabled, analysis is delayed until the expresssion
- -- is rewritten as a loop.
-
- if Operating_Mode /= Check_Semantics then
- return;
- end if;
-
-- The loop structure is already resolved during its analysis, only
-- the resolution of the condition needs to be done. Expansion is
-- disabled so that checks and other generated code are inserted in