Re: [5/6] Insert pattern statements into vec_basic_blocks

2018-08-29 Thread Richard Sandiford
Richard Biener writes: > On Wed, Aug 29, 2018 at 11:10 AM Jakub Jelinek wrote: >> >> On Wed, Aug 29, 2018 at 09:59:07AM +0100, Richard Sandiford wrote: >> > Jakub Jelinek writes: >> > > On Tue, Aug 28, 2018 at 12:24:06PM +0100, Richard Sandiford wrote: >> > >> The point of this patch is to put

Re: [5/6] Insert pattern statements into vec_basic_blocks

2018-08-29 Thread Richard Biener
On Wed, Aug 29, 2018 at 11:10 AM Jakub Jelinek wrote: > > On Wed, Aug 29, 2018 at 09:59:07AM +0100, Richard Sandiford wrote: > > Jakub Jelinek writes: > > > On Tue, Aug 28, 2018 at 12:24:06PM +0100, Richard Sandiford wrote: > > >> The point of this patch is to put pattern statements in the same

Re: [5/6] Insert pattern statements into vec_basic_blocks

2018-08-29 Thread Jakub Jelinek
On Wed, Aug 29, 2018 at 09:59:07AM +0100, Richard Sandiford wrote: > Jakub Jelinek writes: > > On Tue, Aug 28, 2018 at 12:24:06PM +0100, Richard Sandiford wrote: > >> The point of this patch is to put pattern statements in the same > >> vec_basic_block as the statements they replace, with the

Re: [5/6] Insert pattern statements into vec_basic_blocks

2018-08-29 Thread Richard Sandiford
Jakub Jelinek writes: > On Tue, Aug 28, 2018 at 12:24:06PM +0100, Richard Sandiford wrote: >> The point of this patch is to put pattern statements in the same >> vec_basic_block as the statements they replace, with the pattern >> statements for S coming between S and S's original predecessor. >>

Re: [5/6] Insert pattern statements into vec_basic_blocks

2018-08-29 Thread Jakub Jelinek
On Tue, Aug 28, 2018 at 12:24:06PM +0100, Richard Sandiford wrote: > The point of this patch is to put pattern statements in the same > vec_basic_block as the statements they replace, with the pattern > statements for S coming between S and S's original predecessor. > This removes the need to

Re: [5/6] Insert pattern statements into vec_basic_blocks

2018-08-29 Thread Richard Biener
On Wed, Aug 29, 2018 at 1:16 AM Jeff Law wrote: > > On 08/28/2018 05:24 AM, Richard Sandiford wrote: > > The point of this patch is to put pattern statements in the same > > vec_basic_block as the statements they replace, with the pattern > > statements for S coming between S and S's original

Re: [5/6] Insert pattern statements into vec_basic_blocks

2018-08-28 Thread Jeff Law
On 08/28/2018 05:24 AM, Richard Sandiford wrote: > The point of this patch is to put pattern statements in the same > vec_basic_block as the statements they replace, with the pattern > statements for S coming between S and S's original predecessor. > This removes the need to handle them specially

[5/6] Insert pattern statements into vec_basic_blocks

2018-08-28 Thread Richard Sandiford
The point of this patch is to put pattern statements in the same vec_basic_block as the statements they replace, with the pattern statements for S coming between S and S's original predecessor. This removes the need to handle them specially in various places. 2018-08-28 Richard Sandiford