| Index: src/execution.cc
|
| ===================================================================
|
| --- src/execution.cc (revision 3464)
|
| +++ src/execution.cc (working copy)
|
| @@ -30,6 +30,7 @@
|
| #include "v8.h"
|
|
|
| #include "api.h"
|
| +#include "bootstrapper.h"
|
| #include "codegen-inl.h"
|
| #include "debug.h"
|
| #include "simulator.h"
|
| @@ -607,6 +608,11 @@
|
| return Heap::undefined_value();
|
| }
|
|
|
| + // Ignore debug break during bootstrapping.
|
| + if (Bootstrapper::IsActive()) {
|
| + return Heap::undefined_value();
|
| + }
|
| +
|
| {
|
| JavaScriptFrameIterator it;
|
| ASSERT(!it.done());
|
|
|