summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr15784-4.c
blob: 021b6375efcddf9a6321c50b31ae5763d1cec6ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
int a (int x) {
	return ~x + 1; /* -x */
}

int b (int x) {
	return -x -1; /* ~x */
}

/* { dg-final { scan-tree-dump "~x;" "optimized" } } */
/* { dg-final { scan-tree-dump "-x;" "optimized" } } */