public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: "Martin Liška" <mliska@suse.cz>
To: gcc-patches@gcc.gnu.org
Cc: David Edelsohn <dje.gcc@gmail.com>
Subject: [PATCH][OBVIOUS] rs6000: fix symtab_node::get == NULL issue
Date: Wed, 15 Sep 2021 17:21:39 +0200	[thread overview]
Message-ID: <37591d69-b7c1-7a12-23b1-abb29d2183a2@suse.cz> (raw)

Hello.

The patch is approved by David and fixes the issue described in the PR.

Martin

	PR target/102349

gcc/ChangeLog:

	* config/rs6000/rs6000.c (rs6000_xcoff_encode_section_info):
	Check that we have a symbol summary for a symbol.
---
  gcc/config/rs6000/rs6000.c | 1 +
  1 file changed, 1 insertion(+)

diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index b0ec8108007..d0830a95027 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -21728,6 +21728,7 @@ rs6000_xcoff_encode_section_info (tree decl, rtx rtl, int first)
    if (decl
        && DECL_P (decl)
        && VAR_OR_FUNCTION_DECL_P (decl)
+      && symtab_node::get (decl) != NULL
        && symtab_node::get (decl)->alias == 0
        && symname[strlen (symname) - 1] != ']')
      {
-- 
2.33.0


             reply	other threads:[~2021-09-15 15:21 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-15 15:21 Martin Liška [this message]
2021-09-15 18:40 ` David Edelsohn
2021-09-15 19:14   ` Martin Liška

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=37591d69-b7c1-7a12-23b1-abb29d2183a2@suse.cz \
    --to=mliska@suse.cz \
    --cc=dje.gcc@gmail.com \
    --cc=gcc-patches@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).