aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/bitcmp-2.c
blob: d0031d9ecb8d27502cb8d7e2147695ac9056b89a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
/* PR tree-optimization/101590 */

int f_and_gt(unsigned len) {
  const unsigned N = 4;
  unsigned newlen = len & -N;
  return newlen > len; // return 0
}
int f_or_lt(unsigned len) {
  const unsigned N = 4;
  unsigned newlen = len | -N;
  return newlen < len; // return 0
}

/* { dg-final { scan-tree-dump-not " > " "optimized" } } */
/* { dg-final { scan-tree-dump-not " < " "optimized" } } */
/* { dg-final { scan-tree-dump-not " & "  "optimized" } } */
/* { dg-final { scan-tree-dump-not " \\\| " "optimized" } } */
/* { dg-final { scan-tree-dump-times "return 0;" 2 "optimized" } } */