Warn pointer to signed integer cast for ilp32
[official-gcc.git] / gcc / testsuite / gcc.dg / fold-plusmult-2.c
blobfd5376220a5e26a3de443d719131d3a36ca3c601
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-original" } */
4 int foo (int i)
6 return 2 + i * 4;
9 /* We do _not_ want the above to be canonicalized to (i * 2 + 1) * 2. */
11 int bar (int i)
13 return 4 + i * 2;
16 /* But eventually this to be canonicalized to (i + 2) * 2. */
18 /* { dg-final { scan-tree-dump "i \\\* 4 \\\+ 2" "original" } } */
19 /* { dg-final { scan-tree-dump "\\\(i \\\+ 2\\\) \\\* 2" "original" } } */
20 /* { dg-final { cleanup-tree-dump "original" } } */