Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / divide-3.c
blobd305b549cbd9ba8c82c0e71708efffbb18c8dd7b
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fstrict-overflow -fdump-tree-optimized" } */
4 int f(int a)
6 return -(a/10);
9 /* { dg-final { scan-tree-dump-times "a / 10" 0 "optimized"} } */
10 /* { dg-final { scan-tree-dump-times "a / -10" 1 "optimized"} } */
12 /* { dg-final { cleanup-tree-dump "optimized" } } */