Home | History | Annotate | Download | only in x86-darwin
      1 #include <stdio.h>
      2 #include <stdlib.h>
      3 #include <math.h>
      4 
      5 // Refer https://bugs.kde.org/show_bug.cgi?id=350062
      6 
      7 int main(int argc, char **argv)
      8 {
      9     double x = 1.1;
     10     double i = floor(x);
     11 
     12     (void)i;
     13 
     14     fprintf(stderr, "PASS\n");
     15     return 0;
     16 }
     17