Index: src/heap.cc |
=================================================================== |
--- src/heap.cc (revision 3767) |
+++ src/heap.cc (working copy) |
@@ -1498,10 +1498,12 @@ |
#endif |
+#ifdef ENABLE_DEBUGGER_SUPPORT |
void Heap::CreateCEntryDebugBreakStub() { |
DebugerStatementStub stub; |
set_c_entry_debug_break_code(*stub.GetCode()); |
} |
+#endif |
void Heap::CreateJSEntryStub() { |
@@ -1531,7 +1533,9 @@ |
// } |
// To workaround the problem, make separate functions without inlining. |
Heap::CreateCEntryStub(); |
+#ifdef ENABLE_DEBUGGER_SUPPORT |
Heap::CreateCEntryDebugBreakStub(); |
+#endif |
Heap::CreateJSEntryStub(); |
Heap::CreateJSConstructEntryStub(); |
#if V8_TARGET_ARCH_ARM && V8_NATIVE_REGEXP |