summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/fold-xornot-1.c
blob: 167cc1f34c1a90632a16b22971e28152445ac774 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-original" } */

int foo(int x)
{
  return ~(x ^ 4);
}

int bar(int y)
{
  return ~y ^ 4;
}

/* { dg-final { scan-tree-dump-times "x \\^ -5" 1 "original" } } */
/* { dg-final { scan-tree-dump-times "y \\^ -5" 1 "original" } } */