summaryrefslogtreecommitdiff
path: root/gcc/ada
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2016-05-02 09:44:54 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2016-05-02 09:44:54 +0000
commitfcc42a9add42572bb198d815b3d04201fc48aabe (patch)
treea773971596477f3017235cfecf947dc7603070bd /gcc/ada
parent7864cdec0184246eff86c2ac911ca7ea22b497f8 (diff)
downloadgcc-fcc42a9add42572bb198d815b3d04201fc48aabe.tar.gz
2016-05-02 Ed Schonberg <schonberg@adacore.com>
* sem_util.adb (Normalize_Actuals): Take into account extra actuals that may have been introduced previously. Normally extra actuals are introduced when a call is expanded, but a validity check may copy and reanalyze a call that carries an extra actual (e.g. an accessibility parameter) before the call itself is marked Analzyed, and the analysis of the copy has to be able to cope with the added actual. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@235723 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada')
-rw-r--r--gcc/ada/ChangeLog10
-rw-r--r--gcc/ada/sem_util.adb21
2 files changed, 28 insertions, 3 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index d05918c29b9..72a1ae50a76 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -1,3 +1,13 @@
+2016-05-02 Ed Schonberg <schonberg@adacore.com>
+
+ * sem_util.adb (Normalize_Actuals): Take into account extra
+ actuals that may have been introduced previously. Normally extra
+ actuals are introduced when a call is expanded, but a validity
+ check may copy and reanalyze a call that carries an extra actual
+ (e.g. an accessibility parameter) before the call itself is
+ marked Analzyed, and the analysis of the copy has to be able to
+ cope with the added actual.
+
2016-05-02 Bob Duff <duff@adacore.com>
* sem_ch10.adb (Analyze_Compilation_Unit): Preserve
diff --git a/gcc/ada/sem_util.adb b/gcc/ada/sem_util.adb
index 863ff308d9a..4fc783f511d 100644
--- a/gcc/ada/sem_util.adb
+++ b/gcc/ada/sem_util.adb
@@ -17088,9 +17088,24 @@ package body Sem_Util is
and then Actual /= Last
and then No (Next_Named_Actual (Actual))
then
- Error_Msg_N ("unmatched actual & in call",
- Selector_Name (Actual));
- exit;
+ -- A validity check may introduce a copy of a call that
+ -- includes an extra actual (for example for an unrelated
+ -- accessibility check). Check that the extra actual matches
+ -- some extra formal, which must exist already because
+ -- subprogram must be frozen at this point.
+
+ if Present (Extra_Formals (S))
+ and then not Comes_From_Source (Actual)
+ and then Nkind (Actual) = N_Parameter_Association
+ and then Chars (Extra_Formals (S)) =
+ Chars (Selector_Name (Actual))
+ then
+ null;
+ else
+ Error_Msg_N
+ ("unmatched actual & in call", Selector_Name (Actual));
+ exit;
+ end if;
end if;
Next (Actual);