switch is still broken, copying over cparser testcase since noone runs the cparser...
[libfirm] / ir / be / test / fehler074.c
1 /*$ -std=c99 $*/
2
3 #include <stdio.h>
4 #include <math.h>
5
6 int main() {
7     float x = NAN;
8     double y = x;
9
10     printf("%f\n", y);
11     return 0;
12 }