Re: Make inliner to not ICE when folder produce unreachable

2014-02-04 Thread Richard Biener
On Tue, 4 Feb 2014, Jan Hubicka wrote: > Hi, > while playing around with devirtualization I tried to make it to always > produce > builtin_unreachable (). This makes early inliner to ICE, since the callgraph > edges > are not properly updated after folding. This is because > cgraph_update_edge

Make inliner to not ICE when folder produce unreachable

2014-02-03 Thread Jan Hubicka
Hi, while playing around with devirtualization I tried to make it to always produce builtin_unreachable (). This makes early inliner to ICE, since the callgraph edges are not properly updated after folding. This is because cgraph_update_edges_for_call_stmt is called on a wrong statement. Does s