aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/fold-xornot-1.c
blob: c92095d081f10baa2e97ab9c9a1db33b502cb66f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { 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" } } */
/* { dg-final { cleanup-tree-dump "original" } } */