aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/minmax-loopend.c
blob: 3a3b280c8042a3a501a28bc08bf4a73f3ecc10ce (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-optimized" } */

int and_test(long a, long b, long c) {
  int cmp1 = a < b;
  int cmp2 = a < c;
  return cmp1 & cmp2;
}

int ior_test (long a, long b, long c) {
  int cmp1 = a > b;
  int cmp2 = a > c;
  return cmp1 | cmp2;
}

/* { dg-final { scan-tree-dump-times "MIN_EXPR" 2 "optimized" } } */