blob: 48f6b74e39f1464c508b717f4115797b2c2fabf9 [file] [log] [blame]
/* PR/71352 */
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-reassoc1" } */
unsigned a, b, c, d, e;
void
fn1 ()
{
unsigned f;
e = f = d * -b + a * -c;
}
/* Check that we factor -1 and create -(d * b + a * c). */
/* { dg-final { scan-tree-dump-times " = -" 1 "reassoc1" } } */