Fix building without debugger suport.
Review URL: http://codereview.chromium.org/2733003 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4818 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
e0bbcf1e6e
commit
aaaebbe50f
@ -2249,8 +2249,10 @@ static void FlushCodeForFunction(SharedFunctionInfo* function_info) {
|
||||
|
||||
|
||||
void Heap::FlushCode() {
|
||||
#ifdef ENABLE_DEBUGGER_SUPPORT
|
||||
// Do not flush code if the debugger is loaded or there are breakpoints.
|
||||
if (Debug::IsLoaded() || Debug::has_break_points()) return;
|
||||
#endif
|
||||
HeapObjectIterator it(old_pointer_space());
|
||||
for (HeapObject* obj = it.next(); obj != NULL; obj = it.next()) {
|
||||
if (obj->IsJSFunction()) {
|
||||
|
Loading…
Reference in New Issue
Block a user