diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2009-12-19 01:04:19 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2009-12-19 01:04:19 +0100 |
commit | a98afdfb2f05d163b2d4145f2d98c4a7ffd13bfd (patch) | |
tree | 7efd649b7aceaab2d4d847ce79c4517fb616afe3 /deps/v8/src/execution.cc | |
parent | 0981e7f663c9f6cfbccb49aa2956df499a63e60d (diff) | |
download | node-new-a98afdfb2f05d163b2d4145f2d98c4a7ffd13bfd.tar.gz |
Revert "Upgrade V8 to 2.0.5"
This reverts commit 20b945df706b2b9fcbc1a84230372d288d497544.
Broken on Hagen's Macintosh. Don't have time to investigate.
Diffstat (limited to 'deps/v8/src/execution.cc')
-rw-r--r-- | deps/v8/src/execution.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/deps/v8/src/execution.cc b/deps/v8/src/execution.cc index 8a50864266..2f646a5638 100644 --- a/deps/v8/src/execution.cc +++ b/deps/v8/src/execution.cc @@ -30,7 +30,6 @@ #include "v8.h" #include "api.h" -#include "bootstrapper.h" #include "codegen-inl.h" #include "debug.h" #include "simulator.h" @@ -608,11 +607,6 @@ Object* Execution::DebugBreakHelper() { return Heap::undefined_value(); } - // Ignore debug break during bootstrapping. - if (Bootstrapper::IsActive()) { - return Heap::undefined_value(); - } - { JavaScriptFrameIterator it; ASSERT(!it.done()); |