public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "mec at google dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/23509] [4.1 regression] ICE with ivopts
Date: Sat, 03 Sep 2005 20:16:00 -0000	[thread overview]
Message-ID: <20050903201620.1135.qmail@sourceware.org> (raw)
In-Reply-To: <20050821211705.23509.falk@debian.org>


------- Additional Comments From mec at google dot com  2005-09-03 20:16 -------
Here is another test with confirmatory data.

Test case, reduced from some firefox code:

int punycode_decode(const char input[], unsigned char case_flags[])
{
  int j;

  for (j = 0; j < 128; ++j) {
    if (case_flags)
      case_flags[j] = input[j] - 65 < 26;
    if (input[j] < 32)
      return -1;
  }

  return 0;
}

With native i686-pc-linux-gnu, my results are:

gcc 4.0.1, command line "gcc -S -O3 z1.i", no error

gcc 4.1-20050819 snapshot, command line "gcc -S -O3 z1.i", ICE:
z1.i: In function 'punycode_decode':
z1.i:2: internal compiler error: in finalize_ssa_uses, at tree-ssa-operands.c:580

gcc 4.1-20050902 snapshot, command line "gcc -S -O3 z1.i", ICE:
z1.i: In function 'punycode_decode':
z1.i:2: internal compiler error: in finalize_ssa_uses, at tree-ssa-operands.c:580

gcc 4.1-20050902 snapshot, command line "gcc -S -O3 -fno-ivopts z1.i", no error

gcc 4.1-20050902 snapshot + zdenek patch, command line "gcc -S -O3 z1.i", no error

zdenek patch is the version from
http://gcc.gnu.org/ml/gcc-patches/2005-08/msg01647.html .



-- 


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


  parent reply	other threads:[~2005-09-03 20:16 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-08-21 21:19 [Bug tree-optimization/23509] New: [4.0 " falk at debian dot org
2005-08-21 22:20 ` [Bug tree-optimization/23509] [4.1 " pinskia at gcc dot gnu dot org
2005-08-24 12:35 ` rakdver at gcc dot gnu dot org
2005-08-27 12:20 ` rakdver at gcc dot gnu dot org
2005-08-29 19:29 ` pinskia at gcc dot gnu dot org
2005-08-31 23:10 ` qrczak at knm dot org dot pl
2005-09-03 20:16 ` mec at google dot com [this message]
2005-09-09 16:17 ` cvs-commit at gcc dot gnu dot org
2005-09-09 17:59 ` pinskia at gcc dot gnu dot 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=20050903201620.1135.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).