diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2022-07-01 15:24:48 +0200 |
---|---|---|
committer | Pierre-Marie de Rodat <derodat@adacore.com> | 2022-07-13 10:01:14 +0000 |
commit | 94425248c769d45b5932079321311392e4d8e952 (patch) | |
tree | 12e98f262b5674c4737198b9ccfe716bb793c13f | |
parent | 6faa271f09f32b32a6f4e32e3964faadc8372907 (diff) | |
download | gcc-94425248c769d45b5932079321311392e4d8e952.zip gcc-94425248c769d45b5932079321311392e4d8e952.tar.gz gcc-94425248c769d45b5932079321311392e4d8e952.tar.bz2 |
[Ada] Add cross-references between Integer_Type_For and Small_Integer_Type_For
gcc/ada/
* exp_util.ads (Integer_Type_For): Mention Small_Integer_Type_For.
(Small_Integer_Type_For): Mention Integer_Type_For.
-rw-r--r-- | gcc/ada/exp_util.ads | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/exp_util.ads b/gcc/ada/exp_util.ads index e812ca0..1b7be3a 100644 --- a/gcc/ada/exp_util.ads +++ b/gcc/ada/exp_util.ads @@ -758,7 +758,7 @@ package Exp_Util is function Integer_Type_For (S : Uint; Uns : Boolean) return Entity_Id; -- Return a suitable standard integer type containing at least S bits and - -- of the signedness given by Uns. + -- of the signedness given by Uns. See also Small_Integer_Type_For. function Is_Displacement_Of_Object_Or_Function_Result (Obj_Id : Entity_Id) return Boolean; @@ -1193,7 +1193,7 @@ package Exp_Util is function Small_Integer_Type_For (S : Uint; Uns : Boolean) return Entity_Id; -- Return the smallest standard integer type containing at least S bits and - -- of the signedness given by Uns. + -- of the signedness given by Uns. See also Integer_Type_For. function Thunk_Target (Thunk : Entity_Id) return Entity_Id; -- Return the entity ultimately called by the thunk, that is to say return |