Chromium Code Reviews| Index: runtime/vm/flow_graph_type_propagator.cc |
| =================================================================== |
| --- runtime/vm/flow_graph_type_propagator.cc (revision 31031) |
| +++ runtime/vm/flow_graph_type_propagator.cc (working copy) |
| @@ -1011,12 +1011,12 @@ |
| CompileType BinaryMintOpInstr::ComputeType() const { |
| - return CompileType::Int(); |
| + return CompileType::FromCid(kMintCid); |
|
srdjan
2013/12/10 22:56:30
Unfortunately this is incorrect, since a Mint resu
|
| } |
| CompileType ShiftMintOpInstr::ComputeType() const { |
| - return CompileType::Int(); |
| + return CompileType::FromCid(kMintCid); |
| } |