Chromium Code Reviews| Index: src/full-codegen.cc |
| =================================================================== |
| --- src/full-codegen.cc (revision 3744) |
| +++ src/full-codegen.cc (working copy) |
| @@ -998,7 +998,9 @@ |
| #ifdef ENABLE_DEBUGGER_SUPPORT |
| Comment cmnt(masm_, "[ DebuggerStatement"); |
| SetStatementPosition(stmt); |
| - __ CallRuntime(Runtime::kDebugBreak, 0); |
| + |
| + DebugerStatementStub ces; |
| + __ CallStub(&ces); |
| // Ignore the return value. |
| #endif |
| } |