aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/exp_tss.adb
diff options
context:
space:
mode:
authorBob Duff <duff@adacore.com>2022-05-26 10:27:42 -0400
committerPierre-Marie de Rodat <derodat@adacore.com>2022-07-04 07:45:57 +0000
commit4b766285b089ba1bce91a7644b9d97836e80cda3 (patch)
tree1d9f62e39d22a645449d7b48e490e3a2b6fbb8ef /gcc/ada/exp_tss.adb
parent78f13b008ab58794057847a74903ee4569829d80 (diff)
downloadgcc-4b766285b089ba1bce91a7644b9d97836e80cda3.zip
gcc-4b766285b089ba1bce91a7644b9d97836e80cda3.tar.gz
gcc-4b766285b089ba1bce91a7644b9d97836e80cda3.tar.bz2
[Ada] Assertions in Einfo.Utils
Add predicates on subtypes E and N. gcc/ada/ * einfo-utils.ads, einfo-utils.adb: Add predicates on subtypes E and N. Change some parameters to use the unpredicated subtypes, because they sometimes return e.g. Empty. Note that N_Entity_Id has a predicate; Entity_Id does not. * exp_tss.adb (Base_Init_Proc): Use Entity_Id instead of E, because otherwise we fail the predicate. We shouldn't be referring to single-letter names from far away anyway. * sem_aux.adb (Is_Derived_Type): Likewise. * sem_res.adb (Is_Definite_Access_Type): Use N_Entity_Id for predicate. * types.ads (Entity_Id): Add comment explaining the difference between Entity_Id and N_Entity_Id.
Diffstat (limited to 'gcc/ada/exp_tss.adb')
-rw-r--r--gcc/ada/exp_tss.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/exp_tss.adb b/gcc/ada/exp_tss.adb
index a5d9460..09bb133 100644
--- a/gcc/ada/exp_tss.adb
+++ b/gcc/ada/exp_tss.adb
@@ -49,7 +49,7 @@ package body Exp_Tss is
(Typ : Entity_Id;
Ref : Entity_Id := Empty) return Entity_Id
is
- Full_Type : E;
+ Full_Type : Entity_Id;
Proc : Entity_Id;
begin