| Index: vm/intermediate_language.cc
|
| ===================================================================
|
| --- vm/intermediate_language.cc (revision 10648)
|
| +++ vm/intermediate_language.cc (working copy)
|
| @@ -838,11 +838,16 @@
|
| }
|
|
|
|
|
| -RawAbstractType* ToDoubleComp::CompileType() const {
|
| +RawAbstractType* DoubleToDoubleComp::CompileType() const {
|
| return Type::DoubleInterface();
|
| }
|
|
|
|
|
| +RawAbstractType* SmiToDoubleComp::CompileType() const {
|
| + return Type::DoubleInterface();
|
| +}
|
| +
|
| +
|
| // Shared code generation methods (EmitNativeCode, MakeLocationSummary, and
|
| // PrepareEntry). Only assembly code that can be shared across all architectures
|
| // can be used. Machine specific register allocation and code generation
|
|
|