summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/bitwise-sink.c
blob: f44529995b7748ce014a88c426c3c4ebf600c938 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */

int
foo (_Bool x)
{
  return (x ^ 1);
}

/* { dg-final { scan-tree-dump-times "x\[^ \]* \\^ 1" 1 "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */