[Ada] Spurious error on aggregate with choice that is predicted subtype
authorEd Schonberg <schonberg@adacore.com>
Fri, 5 Jul 2019 07:02:32 +0000 (07:02 +0000)
committerPierre-Marie de Rodat <pmderodat@gcc.gnu.org>
Fri, 5 Jul 2019 07:02:32 +0000 (07:02 +0000)
commit7145d799a347800ea6ef5c5e3114db11469137a8
treed874d49dca886c171bfa46dd98eb0ce2947fbdf6
parentde70d01f1a3f52654d39ecb97bd769032e5e2a60
[Ada] Spurious error on aggregate with choice that is predicted subtype

This patch fixes a spurious error on a record aggregate for a variant
record when a choice in the aggregate is given by a subtype with a
static predicate. The same expansion mechanism for such a variant, used
in case statements, must be used here as well.

2019-07-05  Ed Schonberg  <schonberg@adacore.com>

gcc/ada/

* sem_util.adb (Encloing_Subprogram): If Enclosing_Dynamic_Scope
is a loop, continue climbing the scope stack to find the
enclosing subprogram.
(Gather_Components): Handle properly a choice in a record
aggregate that is given by a subtype with a static predicate.

gcc/testsuite/

* gnat.dg/aggr25.adb, gnat.dg/aggr25.ads: New testcase.

From-SVN: r273112
gcc/ada/ChangeLog
gcc/ada/sem_util.adb
gcc/testsuite/ChangeLog
gcc/testsuite/gnat.dg/aggr25.adb [new file with mode: 0644]
gcc/testsuite/gnat.dg/aggr25.ads [new file with mode: 0644]