Re: [PATCH] Fix PR ipa/68311

2015-11-15 Thread Christophe Lyon
On 15 November 2015 at 10:01, Martin Liška wrote: > On 11/14/2015 09:33 AM, Christophe Lyon wrote: >> On 13 November 2015 at 13:17, Richard Biener >> wrote: >>> On Fri, Nov 13, 2015 at 1:04 PM, Martin Liška wrote: Hello. Following patch fixes PR68311, can regbootstrap on x86_64-l

Re: [PATCH] Fix PR ipa/68311

2015-11-15 Thread Martin Liška
On 11/14/2015 09:33 AM, Christophe Lyon wrote: > On 13 November 2015 at 13:17, Richard Biener > wrote: >> On Fri, Nov 13, 2015 at 1:04 PM, Martin Liška wrote: >>> Hello. >>> >>> Following patch fixes PR68311, can regbootstrap on x86_64-linux-gnu. >>> >>> Ready for trunk? >> >> Please use >> >>

Re: [PATCH] Fix PR ipa/68311

2015-11-14 Thread Christophe Lyon
On 13 November 2015 at 13:17, Richard Biener wrote: > On Fri, Nov 13, 2015 at 1:04 PM, Martin Liška wrote: >> Hello. >> >> Following patch fixes PR68311, can regbootstrap on x86_64-linux-gnu. >> >> Ready for trunk? > > Please use > > auto_vec newclasses; > > as it gets you a stack allocation.

Re: [PATCH] Fix PR ipa/68311

2015-11-13 Thread Richard Biener
On Fri, Nov 13, 2015 at 1:04 PM, Martin Liška wrote: > Hello. > > Following patch fixes PR68311, can regbootstrap on x86_64-linux-gnu. > > Ready for trunk? Please use auto_vec newclasses; as it gets you a stack allocation. Also use quick_push as you know the vector is large enough. Ok with