half_call-dsf.c 177 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 //C: '-msoft-fp-double' ////A: '--has-fhalf' void func(half arg) { volatile half l; l = arg; } int main(void) { volatile half a = 1.23456H; func(a); return 0; }