public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/104330] ICE in gfc_simplify_image_index, at fortran/simplify.cc:8294
Date: Wed, 25 May 2022 18:45:37 +0000	[thread overview]
Message-ID: <bug-104330-4-Nc9mKrZOCJ@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-104330-4@http.gcc.gnu.org/bugzilla/>

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104330

kargl at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |NEW
                 CC|                            |kargl at gcc dot gnu.org
   Last reconfirmed|                            |2022-05-25

--- Comment #2 from kargl at gcc dot gnu.org ---
NULL pointer dereference.  This fixes the ICE.  Don't know if the compiled code
is correct.  I don't have CLASS in my codes.

diff --git a/gcc/fortran/simplify.cc b/gcc/fortran/simplify.cc
index 233cc42137f..542c8cb5537 100644
--- a/gcc/fortran/simplify.cc
+++ b/gcc/fortran/simplify.cc
@@ -8295,7 +8295,7 @@ gfc_simplify_image_index (gfc_expr *coarray, gfc_expr
*sub)
     if (ref->type == REF_COMPONENT)
       as = ref->u.ar.as;

-  if (as->type == AS_DEFERRED)
+  if (!as || as->type == AS_DEFERRED)
     return NULL;

   /* "valid sequence of cosubscripts" are required; thus, return 0 unless

  parent reply	other threads:[~2022-05-25 18:45 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-01 17:39 [Bug fortran/104330] New: " gscfq@t-online.de
2022-02-01 21:05 ` [Bug fortran/104330] " gscfq@t-online.de
2022-05-25 18:45 ` kargl at gcc dot gnu.org [this message]
2022-10-17 20:24 ` anlauf at gcc dot gnu.org
2022-10-17 20:44 ` sgk at troutmask dot apl.washington.edu
2022-10-17 20:47 ` cvs-commit at gcc dot gnu.org
2022-10-17 20:49 ` anlauf at gcc dot gnu.org

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=bug-104330-4-Nc9mKrZOCJ@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@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).