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

int f(int a, int b, int c){
  if (c == 0) __builtin_unreachable();
  a *= c;
  b *= c;
  return a == b;
}

/* { dg-final { scan-tree-dump-not "bit_ior_expr" "optimized" } } */