public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Alexandre Oliva <aoliva@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc r13-419] ada: gcc-if: build proper String_Pointer for Get_External_Name
Date: Fri, 13 May 2022 10:49:09 +0000 (GMT)	[thread overview]
Message-ID: <20220513104909.A5FE73839C53@sourceware.org> (raw)

https://gcc.gnu.org/g:6aaa1d573912828efed1514fbec5e1ef8a7cc3bc

commit r13-419-g6aaa1d573912828efed1514fbec5e1ef8a7cc3bc
Author: Alexandre Oliva <oliva@adacore.com>
Date:   Fri May 13 07:48:50 2022 -0300

    ada: gcc-if: build proper String_Pointer for Get_External_Name
    
    The compiler is allowed to assume it can access String bounds, such as
    the prefix passed to Get_External_Name, even in circumstances in which
    the prefix is not going to be used and has_prefix is false, so, from
    the C side, we have to build a proper String_Template for the
    String_Pointer.
    
    
    for  gcc/ada/ChangeLog
    
            * gcc-interface/decl.cc (is_cplusplus_method): Build proper
            String for Get_External_Name.

Diff:
---
 gcc/ada/gcc-interface/decl.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gcc/ada/gcc-interface/decl.cc b/gcc/ada/gcc-interface/decl.cc
index 56ad4998e22..28e1ab7ce81 100644
--- a/gcc/ada/gcc-interface/decl.cc
+++ b/gcc/ada/gcc-interface/decl.cc
@@ -4956,7 +4956,8 @@ is_cplusplus_method (Entity_Id gnat_entity)
      'this' parameter is not encoded in the mangled name of a method.  */
   if (Is_Subprogram (gnat_entity) && Present (Interface_Name (gnat_entity)))
     {
-      String_Pointer sp = { NULL, NULL };
+      String_Template temp = { 0, 0 };
+      String_Pointer sp = { "", &temp };
       Get_External_Name (gnat_entity, false, sp);
 
       void *mem;


                 reply	other threads:[~2022-05-13 10:49 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220513104909.A5FE73839C53@sourceware.org \
    --to=aoliva@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).