# HG changeset patch # User Roland Schatz # Date 1393007708 -3600 # Node ID ec2f0ede90463d85d1c5514be1d2f8566ba53bae # Parent d8ac61f399689633f21494660b70325e5b776b6f Fix wrong kind in LIRGenerator. diff -r d8ac61f39968 -r ec2f0ede9046 graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/gen/LIRGenerator.java --- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/gen/LIRGenerator.java Fri Feb 21 18:58:39 2014 +0100 +++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/gen/LIRGenerator.java Fri Feb 21 19:35:08 2014 +0100 @@ -1032,7 +1032,7 @@ case 32: return Kind.Float; case 64: - return Kind.Long; + return Kind.Double; default: throw GraalInternalError.shouldNotReachHere(); }