public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "zhangjie at magima dot com dot cn" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/16225] [3.5 regression] ICE: verify_ssa failed.
Date: Sun, 01 Aug 2004 16:09:00 -0000	[thread overview]
Message-ID: <20040801160946.13399.qmail@sourceware.org> (raw)
In-Reply-To: <20040627065304.16225.debian-gcc@lists.debian.org>


------- Additional Comments From zhangjie at magima dot com dot cn  2004-08-01 16:09 -------
I add the following check in verify_flow_insensitive_alias_info (). It shows
that there are some other mark_call_clobbered () call sites, which will fail the
check. I'm going to look them closer.

Index: tree-ssa.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/tree-ssa.c,v
retrieving revision 2.26
diff -C3 -p -r2.26 tree-ssa.c
*** tree-ssa.c	29 Jul 2004 20:16:26 -0000	2.26
--- tree-ssa.c	1 Aug 2004 14:38:57 -0000
*************** verify_flow_insensitive_alias_info (void
*** 368,373 ****
--- 368,386 ----
  	      debug_variable (alias);
  	      goto err;
  	    }
+ 
+ 	  if (is_call_clobbered (var) && !is_call_clobbered (alias))
+ 	    {
+ 	      error ("Variable is call-clobbered, but its alias is not.");
+ 	      debug_variable (alias);
+ 	      goto err;
+ 	    }
+ 	  else if (!is_call_clobbered (var) && is_call_clobbered (alias))
+ 	    {
+ 	      error ("Variable is not call-clobbered, but its alias is.");
+ 	      debug_variable (alias);
+ 	      goto err;
+ 	    }
  	}
      }
  

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16225


  parent reply	other threads:[~2004-08-01 16:09 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-06-27  6:53 [Bug tree-optimization/16225] New: " debian-gcc at lists dot debian dot org
2004-06-27  8:11 ` [Bug tree-optimization/16225] " debian-gcc at lists dot debian dot org
2004-06-27  8:25 ` pinskia at gcc dot gnu dot org
2004-06-27  9:37 ` pinskia at gcc dot gnu dot org
2004-07-20  8:52 ` pinskia at gcc dot gnu dot org
2004-07-20 16:17 ` rakdver at gcc dot gnu dot org
2004-07-30  6:50 ` zhangjie at magima dot com dot cn
2004-07-30 17:28 ` giovannibajo at libero dot it
2004-08-01 16:09 ` zhangjie at magima dot com dot cn [this message]
2004-08-01 21:33 ` giovannibajo at libero dot it
2004-08-11 15:59 ` dnovillo at gcc dot gnu dot org
2004-08-11 16:01 ` dnovillo at gcc dot gnu dot org
2004-08-12 17:34 ` dnovillo at gcc dot gnu dot org
2004-08-12 18:35 ` dnovillo at redhat dot com

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=20040801160946.13399.qmail@sourceware.org \
    --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).