| Index: src/stub-cache.cc
|
| diff --git a/src/stub-cache.cc b/src/stub-cache.cc
|
| index bfed6bbac7f5db4fa5f372b1c3d7554886c1b2ae..1f954edfa782250d7060a618d00319aad1915619 100644
|
| --- a/src/stub-cache.cc
|
| +++ b/src/stub-cache.cc
|
| @@ -909,7 +909,7 @@ Handle<Code> StubCache::ComputeCallDebugBreak(int argc,
|
| // Extra IC state is irrelevant for debug break ICs. They jump to
|
| // the actual call ic to carry out the work.
|
| Code::Flags flags =
|
| - Code::ComputeFlags(kind, DEBUG_BREAK, Code::kNoExtraICState,
|
| + Code::ComputeFlags(kind, DEBUG_STUB, DEBUG_BREAK,
|
| Code::NORMAL, argc);
|
| Handle<UnseededNumberDictionary> cache =
|
| isolate_->factory()->non_monomorphic_cache();
|
| @@ -928,7 +928,7 @@ Handle<Code> StubCache::ComputeCallDebugPrepareStepIn(int argc,
|
| // Extra IC state is irrelevant for debug break ICs. They jump to
|
| // the actual call ic to carry out the work.
|
| Code::Flags flags =
|
| - Code::ComputeFlags(kind, DEBUG_PREPARE_STEP_IN, Code::kNoExtraICState,
|
| + Code::ComputeFlags(kind, DEBUG_STUB, DEBUG_PREPARE_STEP_IN,
|
| Code::NORMAL, argc);
|
| Handle<UnseededNumberDictionary> cache =
|
| isolate_->factory()->non_monomorphic_cache();
|
|
|