float_call-hsf.c 180 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-single' ////A: '--has-fhalf' void func(float arg) { volatile float l; l = arg; } int main(void) { volatile float a = 1.23456F; func(a); return 0; }