half_call-O2.c 187 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-half' ////A: '--has-fhalf' //C: '-O2' void func(half arg) { volatile half l; l = arg; } int main(void) { volatile half a = 1.23456H; func(a); return 0; }