* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git] / gcc / testsuite / gcc.dg / pr20130-1.c
blob9763725602cfe2d66b2883f27d75f952a4b123da
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-gimple" } */
3 int z (int a) {
4 return a * -1;
7 int x (int a) {
8 return -1 * a;
11 int y (int a) {
12 return -(-1 * -a);
14 /* { dg-final { scan-tree-dump-times "-a" 3 "gimple" } } */
15 /* { dg-final { cleanup-tree-dump "gimple" } } */