This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/32529] ICE, typedef of function taking VLA
- From: "pa at panix dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 28 Jun 2007 02:09:19 -0000
- Subject: [Bug c/32529] ICE, typedef of function taking VLA
- References: <bug-32529-14770@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #3 from pa at panix dot com 2007-06-28 02:09 -------
Not sure this is a duplicate. 28504 is fixed on my box, I need the 2-D VLA to
trigger the ICE.
void foo(void (*p)(int n, int x[n])) {} /* from 28504, ok */
typedef void (*foop)(int n, int x[n]); /* ok */
typedef void (*ice_t)(int n, int M[n][n]); /* ice */
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32529