[COMMITTED] ada: Fix handling of actual subtypes for expanded names
Checks
Commit Message
From: Piotr Trojanek <trojanek@adacore.com>
gcc/ada/
* sem_util.adb
(Get_Actual_Subtype,Get_Actual_Subtype_If_Available): Fix handling
of expanded names.
Tested on x86_64-pc-linux-gnu, committed on master.
---
gcc/ada/sem_util.adb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
@@ -10104,7 +10104,7 @@ package body Sem_Util is
-- formal, or a variable or constant object, then we get the actual
-- subtype from the referenced entity if one has been built.
- if Nkind (N) = N_Identifier
+ if Nkind (N) in N_Identifier | N_Expanded_Name
and then
(Is_Formal (Entity (N))
or else Ekind (Entity (N)) = E_Constant
@@ -10225,7 +10225,7 @@ package body Sem_Util is
-- formal, or a variable or constant object, then we get the actual
-- subtype from the referenced entity if one has been built.
- if Nkind (N) = N_Identifier
+ if Nkind (N) in N_Identifier | N_Expanded_Name
and then
(Is_Formal (Entity (N))
or else Ekind (Entity (N)) = E_Constant