public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-2055] d: Field names of anonymous delegates should be same as regular delegate types.
@ 2022-08-15 19:37 Iain Buclaw
  0 siblings, 0 replies; only message in thread
From: Iain Buclaw @ 2022-08-15 19:37 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:9fb12ee6fb75be4f980a235dc3f28a29ecc80de0

commit r13-2055-g9fb12ee6fb75be4f980a235dc3f28a29ecc80de0
Author: Iain Buclaw <ibuclaw@gdcproject.org>
Date:   Mon Aug 15 09:54:15 2022 +0200

    d: Field names of anonymous delegates should be same as regular delegate types.
    
    Doesn't change anything in the code generation or ABI, but makes it
    consistent with regular delegates as names would match up when
    inspecting tree dumps.
    
    gcc/d/ChangeLog:
    
            * d-codegen.cc (build_delegate_cst): Give anonymous delegate field
            names same as per ABI spec.

Diff:
---
 gcc/d/d-codegen.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/d/d-codegen.cc b/gcc/d/d-codegen.cc
index 3fd4bee58f6..d02da1f81e3 100644
--- a/gcc/d/d-codegen.cc
+++ b/gcc/d/d-codegen.cc
@@ -419,8 +419,8 @@ build_delegate_cst (tree method, tree object, Type *type)
     {
       /* Convert a function method into an anonymous delegate.  */
       ctype = make_struct_type ("delegate()", 2,
-				get_identifier ("object"), TREE_TYPE (object),
-				get_identifier ("func"), TREE_TYPE (method));
+				get_identifier ("ptr"), TREE_TYPE (object),
+				get_identifier ("funcptr"), TREE_TYPE (method));
       TYPE_DELEGATE (ctype) = 1;
     }


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-08-15 19:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-15 19:37 [gcc r13-2055] d: Field names of anonymous delegates should be same as regular delegate types Iain Buclaw

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).