https://gcc.gnu.org/g:249d08eb121aa569208a9688894c7246fd1e22a1

commit r16-5475-g249d08eb121aa569208a9688894c7246fd1e22a1
Author: Eric Botcazou <[email protected]>
Date:   Tue Nov 11 23:54:24 2025 +0100

    ada: Update description of extra formals for build-in-place functions.
    
    This updates the description of the various kinds of extra formals after the
    latest change made to the implementation.
    
    gcc/ada/ChangeLog:
    
            * exp_ch6.ads (BIP_Formal_Kind): Update description of some values.

Diff:
---
 gcc/ada/exp_ch6.ads | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gcc/ada/exp_ch6.ads b/gcc/ada/exp_ch6.ads
index 3867270e71a9..b32ac77e5b49 100644
--- a/gcc/ada/exp_ch6.ads
+++ b/gcc/ada/exp_ch6.ads
@@ -67,18 +67,18 @@ package Exp_Ch6 is
       --  Present if result subtype is returned on the secondary stack or is
       --  tagged: in this case, this indicates whether the return object is
       --  allocated by the caller or callee, and if the callee, whether to
-      --  use the secondary stack, the global heap or a storage pool. Also
-      --  present if result type needs finalization.
+      --  use the secondary stack, the global heap or a storage pool.
 
       BIP_Storage_Pool,
       --  Present if result subtype is returned on the secondary stack or is
       --  tagged: in this case, if BIP_Alloc_Form = User_Storage_Pool, this
       --  is a pointer to the pool (of type Root_Storage_Pool_Ptr); otherwise
-      --  this is null. Also present if result type needs finalization.
+      --  this is null.
 
       BIP_Collection,
-      --  Present if result type needs finalization. Pointer to the collection
-      --  of the access type used by the caller.
+      --  Present if result type is returned on the secondary stack and needs
+      --  finalization, or is tagged. Pointer to the collection of the access
+      --  type used by the caller.
 
       BIP_Task_Master,
       --  Present if result type contains tasks. Master associated with

Reply via email to