remove accidental printf from float printing

This commit is contained in:
MovingtoMars 2016-01-28 19:44:44 +13:00
parent fb7a95b3c4
commit eb08fd5f5f

View File

@ -268,7 +268,6 @@ pub fn buf_print_f64(out_buf: []u8, x: f64) -> isize {
const bits = f64_to_bits(x);
if (bits & (1 << 63) != 0) {
%%stdout.printf("neg\n");
buf[0] = '-';
len += 1;
}