half_call2-sf.c 211 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 //C: '-msoft-float' ////A: '--has-fhalf' void func(half a, half b) { volatile half l; l = a+b; } int main(void) { volatile half a = 1.23456H; volatile half b = 3.14159H; func(a,b); return 0; }