This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: c/3573: Internal compiler error in fixup_var_refs_1, atfunction.c:1922
- To: gcc-bugs at gcc dot gnu dot org
- Subject: Re: c/3573: Internal compiler error in fixup_var_refs_1, atfunction.c:1922
- From: "Steven G. Johnson" <stevenj at ab-initio dot mit dot edu>
- Date: Tue, 25 Sep 2001 21:41:43 -0400 (EDT)
- Reply-To: "Steven G. Johnson" <stevenj at alum dot mit dot edu>
Compiling the following function with 'gcc -c -O' still gives the
abovementioned ICE in gcc 3.0.1 (Debian Linux/x86).
void kill_gcc3(void)
{
double x = 0.0, y;
y = *(&x);
if (!(&y != &x)) {
}
}
See also:
http://gcc.gnu.org/ml/gcc-bugs/2001-07/msg00180.html
Cordially,
Steven G. Johnson