public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
From: MAKINO Takaki <mak@is.s.u-tokyo.ac.jp>
To: gcc-gnats@gcc.gnu.org
Cc: mak@is.s.u-tokyo.ac.jp
Subject: c++/3620: GCC3.0 optimization on anonymous union causes ICE
Date: Mon, 09 Jul 2001 06:26:00 -0000	[thread overview]
Message-ID: <20010709220907.75F7.MAK@is.s.u-tokyo.ac.jp> (raw)

>Number:         3620
>Category:       c++
>Synopsis:       GCC3.0 optimization on anonymous union causes ICE
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          ice-on-legal-code
>Submitter-Id:   net
>Arrival-Date:   Mon Jul 09 06:26:00 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     Makino Takaki
>Release:        3.0
>Organization:
Tokyo Univ.
>Environment:
System: Linux tetley.is.s.u-tokyo.ac.jp 2.2.16-22enterprise #1 SMP Tue Aug 22 16:29:32 EDT 2000 i686 unknown
Architecture: i686
host: i686-pc-linux-gnu
build: i686-pc-linux-gnu
target: i686-pc-linux-gnu
configured with: ../configure --prefix=/home/users/mak/local/Linux-i686
>Description:
ICE occurs with the following code and -O option:
--------------------------------------test.cpp
void something(char *);

int main()
{
        union {
                char d[sizeof(int)];
                int ll;
        };
        something(d);
        return ll;
}
-----------------------------------------------
mak@tetley% gcc -v
Reading specs from /home/users/mak/local/Linux-i686/lib/gcc-lib/i686-pc-linux-gnu/3.0/specs
Configured with: ../configure --prefix=/home/users/mak/local/Linux-i686
Thread model: single
gcc version 3.0
mak@tetley% g++ -O hoge.cpp
hoge.cpp: In function `int main()':
hoge.cpp:12: Internal compiler error in elimination_effects, at reload1.c:2687
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL: http://www.gnu.org/software/gcc/bugs.html > for instructions.

>How-To-Repeat:
       See description. 
>Fix:
       Work around is to give a name to the union.

int main()
{
        union {
                char d[sizeof(int)];
                int ll;
        } some_name;
        something(some_name.d);
        return some_name.ll;
}

-- 
MAKINO Takaki <mak@is.s.u-tokyo.ac.jp>

>Release-Note:
>Audit-Trail:
>Unformatted:


             reply	other threads:[~2001-07-09  6:26 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-07-09  6:26 MAKINO Takaki [this message]
2001-07-09 13:46 nathan
2001-07-19 19:44 mmitchel
2001-08-07 14:00 mmitchel

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=20010709220907.75F7.MAK@is.s.u-tokyo.ac.jp \
    --to=mak@is.s.u-tokyo.ac.jp \
    --cc=gcc-gnats@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).