OSDN Git Service

2012-01-03 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr21282.c
1 /* { dg-do compile } */
2 /* { dg-options "-O1" } */
3
4 extern double floor (double);
5
6 long foo (float f)
7 {
8           return (long) floor (f);
9 }