summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/predict-8.c
blob: edead8d90b10bc8f04d473af7667ba33ad727c72 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile { target { i?86-*-* x86_64-*-* } } } */
/* { dg-options "-O2 -fdump-rtl-expand" } */

int foo(float a, float b) {
  if (a == b)
    return 1;
  else
    return 2;
}

/* { dg-final { scan-rtl-dump-times "REG_BR_PROB 100" 1 "expand"} } */