On Wed, 9 Nov 2016, Prathamesh Kulkarni wrote:
> On 8 November 2016 at 16:46, Richard Biener wrote:
> > On Tue, 8 Nov 2016, Prathamesh Kulkarni wrote:
> >
> >> On 8 November 2016 at 13:23, Richard Biener wrote:
> >> > On Mon, 7 Nov 2016, Prathamesh Kulkarni wrote:
> >> >
> >> >> On 7 November 20
On 8 November 2016 at 16:46, Richard Biener wrote:
> On Tue, 8 Nov 2016, Prathamesh Kulkarni wrote:
>
>> On 8 November 2016 at 13:23, Richard Biener wrote:
>> > On Mon, 7 Nov 2016, Prathamesh Kulkarni wrote:
>> >
>> >> On 7 November 2016 at 23:06, Prathamesh Kulkarni
>> >> wrote:
>> >> > On 7 No
Chritstophe reported to me that the commit caused test-cases
pr35691-1.c and pr35691-2.c (which were added by the commit)
to FAIL for cortex-a5:
http://people.linaro.org/~christophe.lyon/cross-validation/gcc/trunk/241915/arm-none-linux-gnueabihf/diff-gcc-rh60-arm-none-linux-gnueabihf-arm-cortex-a5
On 08/11/16 11:16, Richard Biener wrote:
On Tue, 8 Nov 2016, Prathamesh Kulkarni wrote:
On 8 November 2016 at 13:23, Richard Biener wrote:
On Mon, 7 Nov 2016, Prathamesh Kulkarni wrote:
On 7 November 2016 at 23:06, Prathamesh Kulkarni
wrote:
On 7 November 2016 at 15:43, Richard Biener w
On Tue, 8 Nov 2016, Prathamesh Kulkarni wrote:
> On 8 November 2016 at 13:23, Richard Biener wrote:
> > On Mon, 7 Nov 2016, Prathamesh Kulkarni wrote:
> >
> >> On 7 November 2016 at 23:06, Prathamesh Kulkarni
> >> wrote:
> >> > On 7 November 2016 at 15:43, Richard Biener wrote:
> >> >> On Fri,
On 8 November 2016 at 13:23, Richard Biener wrote:
> On Mon, 7 Nov 2016, Prathamesh Kulkarni wrote:
>
>> On 7 November 2016 at 23:06, Prathamesh Kulkarni
>> wrote:
>> > On 7 November 2016 at 15:43, Richard Biener wrote:
>> >> On Fri, 4 Nov 2016, Prathamesh Kulkarni wrote:
>> >>
>> >>> On 4 Novem
On Mon, 7 Nov 2016, Prathamesh Kulkarni wrote:
> On 7 November 2016 at 23:06, Prathamesh Kulkarni
> wrote:
> > On 7 November 2016 at 15:43, Richard Biener wrote:
> >> On Fri, 4 Nov 2016, Prathamesh Kulkarni wrote:
> >>
> >>> On 4 November 2016 at 13:41, Richard Biener wrote:
> >>> > On Thu, 3 N
On 7 November 2016 at 23:06, Prathamesh Kulkarni
wrote:
> On 7 November 2016 at 15:43, Richard Biener wrote:
>> On Fri, 4 Nov 2016, Prathamesh Kulkarni wrote:
>>
>>> On 4 November 2016 at 13:41, Richard Biener wrote:
>>> > On Thu, 3 Nov 2016, Marc Glisse wrote:
>>> >
>>> >> On Thu, 3 Nov 2016, R
On 7 November 2016 at 15:43, Richard Biener wrote:
> On Fri, 4 Nov 2016, Prathamesh Kulkarni wrote:
>
>> On 4 November 2016 at 13:41, Richard Biener wrote:
>> > On Thu, 3 Nov 2016, Marc Glisse wrote:
>> >
>> >> On Thu, 3 Nov 2016, Richard Biener wrote:
>> >>
>> >> > > > > The transform would also
On Fri, 4 Nov 2016, Prathamesh Kulkarni wrote:
> On 4 November 2016 at 13:41, Richard Biener wrote:
> > On Thu, 3 Nov 2016, Marc Glisse wrote:
> >
> >> On Thu, 3 Nov 2016, Richard Biener wrote:
> >>
> >> > > > > The transform would also work for vectors (element_precision for
> >> > > > > the tes
On 4 November 2016 at 13:41, Richard Biener wrote:
> On Thu, 3 Nov 2016, Marc Glisse wrote:
>
>> On Thu, 3 Nov 2016, Richard Biener wrote:
>>
>> > > > > The transform would also work for vectors (element_precision for
>> > > > > the test but also a value-matching zero which should ensure the
>> >
On Thu, 3 Nov 2016, Marc Glisse wrote:
> On Thu, 3 Nov 2016, Richard Biener wrote:
>
> > > > > The transform would also work for vectors (element_precision for
> > > > > the test but also a value-matching zero which should ensure the
> > > > > same number of elements).
> > > > Um sorry, I didn't
On Thu, 3 Nov 2016, Richard Biener wrote:
The transform would also work for vectors (element_precision for
the test but also a value-matching zero which should ensure the
same number of elements).
Um sorry, I didn't get how to check vectors to be of equal length by a
matching zero.
Could you pl
On November 3, 2016 6:11:07 PM GMT+01:00, Marc Glisse
wrote:
>On Thu, 3 Nov 2016, Prathamesh Kulkarni wrote:
>
>> On 3 November 2016 at 16:13, Richard Biener
>wrote:
>>> On Thu, 3 Nov 2016, Prathamesh Kulkarni wrote:
>>>
Hi Richard,
The attached patch tries to fix PR35691, by adding th
On Thu, 3 Nov 2016, Richard Biener wrote:
On Thu, 3 Nov 2016, Prathamesh Kulkarni wrote:
Hi Richard,
The attached patch tries to fix PR35691, by adding the following two
transforms to match.pd:
(x == 0 && y == 0) -> (x | typeof(x)(y)) == 0.
(x != 0 || y != 0) -> (x | typeof(x)(y)) != 0.
For G
On Thu, 3 Nov 2016, Prathamesh Kulkarni wrote:
On 3 November 2016 at 16:13, Richard Biener wrote:
On Thu, 3 Nov 2016, Prathamesh Kulkarni wrote:
Hi Richard,
The attached patch tries to fix PR35691, by adding the following two
transforms to match.pd:
(x == 0 && y == 0) -> (x | typeof(x)(y)) =
On 3 November 2016 at 16:13, Richard Biener wrote:
> On Thu, 3 Nov 2016, Prathamesh Kulkarni wrote:
>
>> Hi Richard,
>> The attached patch tries to fix PR35691, by adding the following two
>> transforms to match.pd:
>> (x == 0 && y == 0) -> (x | typeof(x)(y)) == 0.
>> (x != 0 || y != 0) -> (x | ty
On Thu, 3 Nov 2016, Prathamesh Kulkarni wrote:
> Hi Richard,
> The attached patch tries to fix PR35691, by adding the following two
> transforms to match.pd:
> (x == 0 && y == 0) -> (x | typeof(x)(y)) == 0.
> (x != 0 || y != 0) -> (x | typeof(x)(y)) != 0.
>
> For GENERIC, the "and" operator is tr
Hi Richard,
The attached patch tries to fix PR35691, by adding the following two
transforms to match.pd:
(x == 0 && y == 0) -> (x | typeof(x)(y)) == 0.
(x != 0 || y != 0) -> (x | typeof(x)(y)) != 0.
For GENERIC, the "and" operator is truth_andif_expr, and it seems for GIMPLE,
it gets transformed t
19 matches
Mail list logo