Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / pr15784-4.c
blob0d31697a9a3e52b63a2341c514d31d2374f736fe
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
3 int a (int x) {
4 return ~x + 1; /* -x */
7 int b (int x) {
8 return -x -1; /* ~x */
11 /* { dg-final { scan-tree-dump "~x;" "optimized" } } */
12 /* { dg-final { scan-tree-dump "-x;" "optimized" } } */
13 /* { dg-final { cleanup-tree-dump "optimized" } } */