half_dtoh.c 140 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 ////C: '-msoft-fp-half' //A: '--has-fhalf' int main(void) { volatile half z; volatile double a=1.23456; z = (half)a; return 0; }