This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug debug/13367] [3.4 Regression] gcc gets an internal error when building gcc-3.4 with an installed gcc 3.4
- From: "dhazeghi at yahoo dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 10 Dec 2003 23:49:31 -0000
- Subject: [Bug debug/13367] [3.4 Regression] gcc gets an internal error when building gcc-3.4 with an installed gcc 3.4
- References: <20031209135925.13367.stevenyi@163.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From dhazeghi at yahoo dot com 2003-12-10 23:49 -------
Here's a reduced testcase. It will crash, but only with -g. This is a regression from the 3.3 branch,
where it compiles fine.
typedef union tree_node *tree;
typedef struct c_pretty_print_info c_pretty_printer;
void pp_c_string_literal (c_pretty_printer *, tree);
static __inline__ __attribute__((always_inline)) void
pp_c_shift_expression (c_pretty_printer *pp, tree e)
{
pp_c_shift_expression (pp,e);
}
static void
pp_c_relational_expression (c_pretty_printer *pp, tree e)
{
pp_c_shift_expression (pp, e);
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13367