summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/predict-8.c
blob: 5578175ec8048b835708bf56c4fa8a7ea84b54a5 (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-details-blocks" } */

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

/* { dg-final { scan-rtl-dump-times "65.\[34]. .guessed" 2 "expand"} } */