Index: runtime/vm/flow_graph_compiler_arm.cc |
=================================================================== |
--- runtime/vm/flow_graph_compiler_arm.cc (revision 28063) |
+++ runtime/vm/flow_graph_compiler_arm.cc (working copy) |
@@ -1457,9 +1457,11 @@ |
__ Push(reg); |
__ PushObject(obj); |
if (is_optimizing()) { |
- __ BranchLink(&StubCode::OptimizedIdenticalWithNumberCheckLabel()); |
+ __ BranchLinkPatchable( |
+ &StubCode::OptimizedIdenticalWithNumberCheckLabel()); |
} else { |
- __ BranchLink(&StubCode::UnoptimizedIdenticalWithNumberCheckLabel()); |
+ __ BranchLinkPatchable( |
+ &StubCode::UnoptimizedIdenticalWithNumberCheckLabel()); |
} |
AddCurrentDescriptor(PcDescriptors::kRuntimeCall, |
Isolate::kNoDeoptId, |
@@ -1481,9 +1483,11 @@ |
__ Push(left); |
__ Push(right); |
if (is_optimizing()) { |
- __ BranchLink(&StubCode::OptimizedIdenticalWithNumberCheckLabel()); |
+ __ BranchLinkPatchable( |
+ &StubCode::OptimizedIdenticalWithNumberCheckLabel()); |
} else { |
- __ BranchLink(&StubCode::UnoptimizedIdenticalWithNumberCheckLabel()); |
+ __ BranchLinkPatchable( |
+ &StubCode::UnoptimizedIdenticalWithNumberCheckLabel()); |
} |
AddCurrentDescriptor(PcDescriptors::kRuntimeCall, |
Isolate::kNoDeoptId, |