Index: runtime/vm/deopt_instructions.cc |
diff --git a/runtime/vm/deopt_instructions.cc b/runtime/vm/deopt_instructions.cc |
index 1aa11b76da285ad8748dd321e5cf62d2f6e00718..a7054431a00715bfee0a3d0aa19780f251b54912 100644 |
--- a/runtime/vm/deopt_instructions.cc |
+++ b/runtime/vm/deopt_instructions.cc |
@@ -661,9 +661,11 @@ class DeoptPcMarkerInstr : public DeoptInstr { |
Function& function = Function::Handle(deopt_context->zone()); |
function ^= deopt_context->ObjectAt(object_table_index_); |
if (function.IsNull()) { |
+#if !defined(TARGET_ARCH_DBC) |
zra
2016/04/08 22:37:35
Personal note. Stopping here.
Vyacheslav Egorov (Google)
2016/04/11 10:49:11
Acknowledged.
|
*reinterpret_cast<RawObject**>(dest_addr) = deopt_context->is_lazy_deopt() |
? StubCode::DeoptimizeLazy_entry()->code() |
: StubCode::Deoptimize_entry()->code(); |
+#endif |
return; |
} |