Re: [GIMPLE FE] add fma_expr

2017-02-21 Thread Richard Biener
On Tue, 21 Feb 2017, Kyrill Tkachov wrote: > > On 21/02/17 08:56, Richard Biener wrote: > > On Tue, 21 Feb 2017, Kyrill Tkachov wrote: > > > > > On 21/02/17 08:43, Richard Biener wrote: > > > > On Mon, 20 Feb 2017, Kyrill Tkachov wrote: > > > > > > > > > Hi Prathamesh, > > > > > > > > > > On 1

Re: [GIMPLE FE] add fma_expr

2017-02-21 Thread Kyrill Tkachov
On 21/02/17 08:56, Richard Biener wrote: On Tue, 21 Feb 2017, Kyrill Tkachov wrote: On 21/02/17 08:43, Richard Biener wrote: On Mon, 20 Feb 2017, Kyrill Tkachov wrote: Hi Prathamesh, On 16/02/17 12:47, Prathamesh Kulkarni wrote: Hi Richard, The attached patch handles fma_expr in gimple-fe

Re: [GIMPLE FE] add fma_expr

2017-02-21 Thread Richard Biener
On Tue, 21 Feb 2017, Kyrill Tkachov wrote: > > On 21/02/17 08:43, Richard Biener wrote: > > On Mon, 20 Feb 2017, Kyrill Tkachov wrote: > > > > > Hi Prathamesh, > > > > > > On 16/02/17 12:47, Prathamesh Kulkarni wrote: > > > > Hi Richard, > > > > The attached patch handles fma_expr in gimple-fe.

Re: [GIMPLE FE] add fma_expr

2017-02-21 Thread Kyrill Tkachov
On 21/02/17 08:43, Richard Biener wrote: On Mon, 20 Feb 2017, Kyrill Tkachov wrote: Hi Prathamesh, On 16/02/17 12:47, Prathamesh Kulkarni wrote: Hi Richard, The attached patch handles fma_expr in gimple-fe. Does it look OK ? Thanks, Prathamesh I see the new test ICEing on aarch64-none-elf.

Re: [GIMPLE FE] add fma_expr

2017-02-21 Thread Richard Biener
On Mon, 20 Feb 2017, Kyrill Tkachov wrote: > Hi Prathamesh, > > On 16/02/17 12:47, Prathamesh Kulkarni wrote: > > Hi Richard, > > The attached patch handles fma_expr in gimple-fe. > > Does it look OK ? > > > > Thanks, > > Prathamesh > > I see the new test ICEing on aarch64-none-elf. FMA_EXPR r

Re: [GIMPLE FE] add fma_expr

2017-02-20 Thread Kyrill Tkachov
Hi Prathamesh, On 16/02/17 12:47, Prathamesh Kulkarni wrote: Hi Richard, The attached patch handles fma_expr in gimple-fe. Does it look OK ? Thanks, Prathamesh I see the new test ICEing on aarch64-none-elf. Thanks, Kyrill -- $DIR/build-aarch64/obj/gc

Re: [GIMPLE FE] add fma_expr

2017-02-16 Thread Richard Biener
On Thu, 16 Feb 2017, Prathamesh Kulkarni wrote: > Hi Richard, > The attached patch handles fma_expr in gimple-fe. > Does it look OK ? + tree arg0_type = TREE_TYPE (args[0]); + if (!SCALAR_FLOAT_TYPE_P (arg0_type)) + { + error_at (loc, "operand

[GIMPLE FE] add fma_expr

2017-02-16 Thread Prathamesh Kulkarni
Hi Richard, The attached patch handles fma_expr in gimple-fe. Does it look OK ? Thanks, Prathamesh diff --git a/gcc/c/gimple-parser.c b/gcc/c/gimple-parser.c index d959877..fbd4c8c 100644 --- a/gcc/c/gimple-parser.c +++ b/gcc/c/gimple-parser.c @@ -856,6 +856,50 @@ c_parser_gimple_postfix_expressio