Re: PR57548 - Call to multiversioned function from global namespace

2013-06-10 Thread Sriraman Tallam
On Sat, Jun 8, 2013 at 4:03 PM, David Edelsohn dje@gmail.com wrote: FYI, gcc/cp has it's own ChangeLog file. Yes, it is confusing that some directories have their own and others do not. Fixed now. Sri. - David

Re: PR57548 - Call to multiversioned function from global namespace

2013-06-08 Thread Eric Botcazou
The ICE here is because of a multi-versioned function called from global namespace and has no caller. This ICEs in target hook ix86_can_inline_p as caller is 0x0. The following simple patch attached fixes this problem. * cp/call.c (build_over_call): Check if current_function_decl

Re: PR57548 - Call to multiversioned function from global namespace

2013-06-08 Thread David Edelsohn
FYI, gcc/cp has it's own ChangeLog file. Yes, it is confusing that some directories have their own and others do not. - David

PR57548 - Call to multiversioned function from global namespace

2013-06-07 Thread Sriraman Tallam
Hi, See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57548 The ICE here is because of a multi-versioned function called from global namespace and has no caller. This ICEs in target hook ix86_can_inline_p as caller is 0x0. The following simple patch attached fixes this problem. *

Re: PR57548 - Call to multiversioned function from global namespace

2013-06-07 Thread Jason Merrill
OK. Jason