summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr33007.c
blob: c583ab6522cc366909c40a2a34ce966fdaaefb1f (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-O -ffast-math -ftrapping-math" } */
/* { dg-warning ".-fassociative-math. disabled" "" { target *-*-* } 0 } */

long
foo (int i)
{
  float x;
  x = i;
  return __builtin_lroundf (x);
}