summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/fold-xor-1.c
blob: a7d05524cf6fde306003f7abf2c80499a712e9c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-fdump-tree-gimple" } */

int f (int a, int b) {
  return ~a ^ ~b;
}

unsigned int g (unsigned int a, unsigned int b) {
  return ~a ^ ~b;
}
/* { dg-final { scan-tree-dump-times "a \\^ b" 2 "gimple" } } */