Revision: 11783
Author:   [email protected]
Date:     Tue Jun 12 09:53:15 2012
Log:      Fix failing assertion in r11782.

[email protected]

Review URL: https://chromiumcodereview.appspot.com/10548004
http://code.google.com/p/v8/source/detail?r=11783

Modified:
 /branches/bleeding_edge/src/debug.cc

=======================================
--- /branches/bleeding_edge/src/debug.cc        Tue Jun 12 08:57:50 2012
+++ /branches/bleeding_edge/src/debug.cc        Tue Jun 12 09:53:15 2012
@@ -2118,8 +2118,8 @@
     return true;
   }

-  // Make sure we are prepared to handle breakpoints.
-  ASSERT(has_break_points_);
+  // There will be at least one break point when we are done.
+  has_break_points_ = true;

   // Ensure function is compiled. Return false if this failed.
   if (!function.is_null() &&

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to