Index: src/ia32/codegen-ia32.cc |
=================================================================== |
--- src/ia32/codegen-ia32.cc (revision 3744) |
+++ src/ia32/codegen-ia32.cc (working copy) |
@@ -3901,7 +3901,9 @@ |
#ifdef ENABLE_DEBUGGER_SUPPORT |
// Spill everything, even constants, to the frame. |
frame_->SpillAll(); |
- frame_->CallRuntime(Runtime::kDebugBreak, 0); |
+ |
+ DebugerStatementStub ces; |
+ frame_->CallStub(&ces, 0); |
// Ignore the return value. |
#endif |
} |