Re: [PATCH] Fix ICE in gen_lsm_tmp_name (PR tree-optimization/70169)

2016-03-11 Thread Richard Biener
On Fri, 11 Mar 2016, Jakub Jelinek wrote: > Hi! > > As the testcase shows, we can get a FUNCTION_DECL or LABEL_DECL (on > questionable code). The patch also removes the default gcc_unreachable (), > as this is just a debugging aid function, nothing bad happens if we ignore > some other tree code

[PATCH] Fix ICE in gen_lsm_tmp_name (PR tree-optimization/70169)

2016-03-11 Thread Jakub Jelinek
Hi! As the testcase shows, we can get a FUNCTION_DECL or LABEL_DECL (on questionable code). The patch also removes the default gcc_unreachable (), as this is just a debugging aid function, nothing bad happens if we ignore some other tree code. Bootstrapped/regtested on x86_64-linux and i686-linu