1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-cplxlower1-raw" } */
4 _Complex
double f(double a
, double c
)
6 _Complex
double d
= __builtin_complex (a
, a
);
7 d
+=__builtin_complex(c
, c
);
11 /* There should only be one plus as (a+c) is still (a+c) */
12 /* { dg-final { scan-tree-dump-times "plus_expr, " 1 "cplxlower1" } } */