| Index: runtime/vm/debugger_ia32.cc
|
| diff --git a/runtime/vm/debugger_ia32.cc b/runtime/vm/debugger_ia32.cc
|
| index b05ae1691cf48c11b3139bcd8d4aca45ab59845b..6b9ae72bc1fef0ed1998b919458444ca11c524b1 100644
|
| --- a/runtime/vm/debugger_ia32.cc
|
| +++ b/runtime/vm/debugger_ia32.cc
|
| @@ -37,12 +37,6 @@ void CodeBreakpoint::PatchCode() {
|
| pc_, code, isolate->stub_code()->ICCallBreakpointEntryPoint());
|
| break;
|
| }
|
| - case RawPcDescriptors::kClosureCall: {
|
| - saved_value_ = CodePatcher::GetStaticCallTargetAt(pc_, code);
|
| - CodePatcher::PatchStaticCallAt(
|
| - pc_, code, isolate->stub_code()->ClosureCallBreakpointEntryPoint());
|
| - break;
|
| - }
|
| case RawPcDescriptors::kRuntimeCall: {
|
| saved_value_ = CodePatcher::GetStaticCallTargetAt(pc_, code);
|
| CodePatcher::PatchStaticCallAt(
|
| @@ -66,7 +60,6 @@ void CodeBreakpoint::RestoreCode() {
|
| switch (breakpoint_kind_) {
|
| case RawPcDescriptors::kIcCall:
|
| case RawPcDescriptors::kUnoptStaticCall:
|
| - case RawPcDescriptors::kClosureCall:
|
| case RawPcDescriptors::kRuntimeCall: {
|
| CodePatcher::PatchStaticCallAt(pc_, code, saved_value_);
|
| break;
|
|
|