comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/calc/ConvertNode.java @ 9534:197994e68e43

float to double conversion is lossless
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 03 May 2013 15:20:52 +0200
parents 7b88c5e5cbd4
children ef6915cf1e59
comparison
equal deleted inserted replaced
9533:298e47193781 9534:197994e68e43
39 I2L(Int, Long, true), 39 I2L(Int, Long, true),
40 L2I(Long, Int, false), 40 L2I(Long, Int, false),
41 I2B(Int, Byte, false), 41 I2B(Int, Byte, false),
42 I2C(Int, Char, false), 42 I2C(Int, Char, false),
43 I2S(Int, Short, false), 43 I2S(Int, Short, false),
44 F2D(Float, Double, false), 44 F2D(Float, Double, true),
45 D2F(Double, Float, false), 45 D2F(Double, Float, false),
46 I2F(Int, Float, false), 46 I2F(Int, Float, false),
47 I2D(Int, Double, true), 47 I2D(Int, Double, true),
48 F2I(Float, Int, false), 48 F2I(Float, Int, false),
49 D2I(Double, Int, false), 49 D2I(Double, Int, false),