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/66545] ICE on using undefined parameter/variable values
Date: Mon, 15 Jun 2015 20:28:00 -0000	[thread overview]
Message-ID: <bug-66545-4-1DOlhM2Oev@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-66545-4@http.gcc.gnu.org/bugzilla/>

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

kargl at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kargl at gcc dot gnu.org

--- Comment #4 from kargl at gcc dot gnu.org ---
(In reply to Thomas Koenig from comment #3)
> This fixes the complex part, the others need their own parts.
> 
> Index: primary.c
> ===================================================================
> --- primary.c   (Revision 224450)
> +++ primary.c   (Arbeitskopie)
> @@ -1254,6 +1254,13 @@ match_sym_complex_part (gfc_expr **result)
>        return MATCH_ERROR;
>      }
>  
> +  if (sym->value == NULL)
> +    {
> +      gfc_error ("PARAMETER %qs is used at %C before its definition "
> +                "is complete", sym->name);
> +      return MATCH_ERROR;
> +    }
> +
>    if (!gfc_numeric_ts (&sym->value->ts))
>      {
>        gfc_error ("Numeric PARAMETER required in complex constant at %C");

I have 

  if (!sym->value)
    goto error;

which leads to the same error.


  parent reply	other threads:[~2015-06-15 20:28 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-15 17:19 [Bug fortran/66545] New: " gerhard.steinmetz.fortran@t-online.de
2015-06-15 17:20 ` [Bug fortran/66545] " gerhard.steinmetz.fortran@t-online.de
2015-06-15 19:03 ` gerhard.steinmetz.fortran@t-online.de
2015-06-15 20:12 ` tkoenig at gcc dot gnu.org
2015-06-15 20:28 ` kargl at gcc dot gnu.org [this message]
2015-06-15 21:19 ` tkoenig at gcc dot gnu.org
2015-06-15 21:35 ` sgk at troutmask dot apl.washington.edu
2015-06-16 19:59 ` tkoenig at gcc dot gnu.org
2015-07-02 17:02 ` kargl at gcc dot gnu.org
2015-07-16 19:04 ` kargl 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-66545-4-1DOlhM2Oev@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).