Chromium Code Reviews| Index: runtime/vm/intermediate_language_ia32.cc |
| =================================================================== |
| --- runtime/vm/intermediate_language_ia32.cc (revision 39456) |
| +++ runtime/vm/intermediate_language_ia32.cc (working copy) |
| @@ -5198,7 +5198,7 @@ |
| void PolymorphicInstanceCallInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| Label* deopt = compiler->AddDeoptStub( |
| deopt_id(), ICData::kDeoptPolymorphicInstanceCallTestFail); |
| - if (ic_data().NumberOfChecks() == 0) { |
| + if (ic_data().NumberOfUsedChecks() == 0) { |
|
Florian Schneider
2014/09/18 12:32:29
Why is this only changed on ia32? This also seems
srdjan
2014/09/25 17:40:25
This was fixed in a follow up CL
|
| __ jmp(deopt); |
| return; |
| } |