This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug debug/13367] [3.4 Regression] gcc gets an internal error when building gcc-3.4 with an installed gcc 3.4


------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]