This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/16460] [3.5 Regression] ICE when compiling glibc (ld-ctype.c)
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 10 Jul 2004 01:48:06 -0000
- Subject: [Bug middle-end/16460] [3.5 Regression] ICE when compiling glibc (ld-ctype.c)
- References: <20040709202544.16460.drepper@redhat.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-07-10 01:48 -------
Here are some minized testcases from a mailing:
<http://gcc.gnu.org/ml/gcc-patches/2004-07/msg00937.html>
static inline int g(void) {
auto int h(void) __attribute__((noinline));
int h(void) { return 1; }
return h();
}
int f(void) { return g(); }
---------------------
static inline int g(int i) {
auto inline int h(void);
auto int h2(void) __attribute__((noinline));
int h(void) { return i+1; }
int h2(void) { return h(); }
return h2();
}
int f(void) { return g(1); }
int f2(void) { return g(1); }
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Last reconfirmed|0000-00-00 00:00:00 |2004-07-10 01:48:06
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16460