summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/fold-plusmult.c
blob: cd28fa6751b3dddd5ed864144f005dcb9ebd1c68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-fdump-tree-original" } */

int test1 (int a)
{
  return 2*a + 2*a;
}

int test2 (int a)
{
  return (a + a)*2;
}

/* { dg-final { scan-tree-dump-times "a \\\* 4" 2 "original" } } */