[Bug tree-optimization/55104] [4.8 Regression] ice in inline_call, at ipa-inline-transform.c:269

2012-12-08 Thread pinskia at gcc dot gnu.org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55104



Andrew Pinski pinskia at gcc dot gnu.org changed:



   What|Removed |Added



 Status|UNCONFIRMED |RESOLVED

 Resolution||DUPLICATE



--- Comment #6 from Andrew Pinski pinskia at gcc dot gnu.org 2012-12-09 
00:21:17 UTC ---

Yes this is a dup of bug 55078 after all.



*** This bug has been marked as a duplicate of bug 55078 ***


[Bug tree-optimization/55104] [4.8 Regression] ice in inline_call, at ipa-inline-transform.c:269

2012-12-07 Thread rguenth at gcc dot gnu.org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55104



Richard Biener rguenth at gcc dot gnu.org changed:



   What|Removed |Added



   Priority|P3  |P1

 Depends on||55078


[Bug tree-optimization/55104] [4.8 Regression] ice in inline_call, at ipa-inline-transform.c:269

2012-11-01 Thread hubicka at gcc dot gnu.org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55104



Jan Hubicka hubicka at gcc dot gnu.org changed:



   What|Removed |Added



 Depends on||55078



--- Comment #4 from Jan Hubicka hubicka at gcc dot gnu.org 2012-11-01 
12:40:22 UTC ---

Most probably dup of PR55078. I am going to silence the ICE until that one is

fixed, lets not forget to double check that after fixing PR55078 this testcase

gets fixed, too.


[Bug tree-optimization/55104] [4.8 Regression] ice in inline_call, at ipa-inline-transform.c:269

2012-11-01 Thread hubicka at gcc dot gnu.org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55104



--- Comment #5 from Jan Hubicka hubicka at gcc dot gnu.org 2012-11-01 
12:44:22 UTC ---

Author: hubicka

Date: Thu Nov  1 12:44:13 2012

New Revision: 193062



URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=193062

Log:



PR middle-end/55104

* ipa-inline-transform.c (inline_call): Silence an sanity check until

ipa-cp issue if fixed.



Modified:

trunk/gcc/ChangeLog

trunk/gcc/ipa-inline-transform.c


[Bug tree-optimization/55104] [4.8 Regression] ice in inline_call, at ipa-inline-transform.c:269

2012-10-31 Thread zsojka at seznam dot cz


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55104



--- Comment #3 from Zdenek Sojka zsojka at seznam dot cz 2012-10-31 20:52:04 
UTC ---

Created attachment 28585

  -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=28585

preprocessed source (quite reduced)



Probably the same source



Compiler output:

$ gcc -O2 --param=hot-bb-frequency-fraction=1 devirt2.ii 

/mnt/svn/gcc-trunk/gcc/testsuite/g++.dg/opt/devirt2.C:30:23: internal compiler

error: in inline_call, at ipa-inline-transform.c:269

 void bah() {foo(r.s);}

   ^

0x1290c5e inline_call(cgraph_edge*, bool, vec_tcgraph_edge***, int*, bool)

/mnt/svn/gcc-trunk/gcc/ipa-inline-transform.c:265

0x128ffd4 inline_small_functions

/mnt/svn/gcc-trunk/gcc/ipa-inline.c:1553

0x128ffd4 ipa_inline

/mnt/svn/gcc-trunk/gcc/ipa-inline.c:1735

Please submit a full bug report,

with preprocessed source if appropriate.

Please include the complete backtrace with any bug report.

See http://gcc.gnu.org/bugs.html for instructions.


[Bug tree-optimization/55104] [4.8 Regression] ice in inline_call, at ipa-inline-transform.c:269

2012-10-29 Thread rguenth at gcc dot gnu.org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55104



Richard Biener rguenth at gcc dot gnu.org changed:



   What|Removed |Added



 CC||hubicka at gcc dot gnu.org

   Target Milestone|--- |4.8.0

Summary|ice in inline_call, at  |[4.8 Regression] ice in

   |ipa-inline-transform.c:269  |inline_call, at

   ||ipa-inline-transform.c:269


[Bug tree-optimization/55104] [4.8 Regression] ice in inline_call, at ipa-inline-transform.c:269

2012-10-29 Thread izamyatin at gmail dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55104



Igor Zamyatin izamyatin at gmail dot com changed:



   What|Removed |Added



 CC||izamyatin at gmail dot com



--- Comment #1 from Igor Zamyatin izamyatin at gmail dot com 2012-10-29 
15:22:50 UTC ---

Caused by r192821


[Bug tree-optimization/55104] [4.8 Regression] ice in inline_call, at ipa-inline-transform.c:269

2012-10-29 Thread markus at trippelsdorf dot de


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55104



Markus Trippelsdorf markus at trippelsdorf dot de changed:



   What|Removed |Added



 CC||markus at trippelsdorf dot

   ||de



--- Comment #2 from Markus Trippelsdorf markus at trippelsdorf dot de 
2012-10-29 16:40:17 UTC ---

#include algorithm

#include vector

using std::vector;

bool gr(const vectorint a, const vectorint b)

{

  return a.size()  b.size();

}



void foo(vectorvectorint  p1)

{

  sort(p1.begin(), p1.end(), gr);

}