From f6517b04d02c283952920e7b9c0968d88f4894ca Mon Sep 17 00:00:00 2001 From: "peter.rybin@gmail.com" Date: Thu, 29 Jul 2010 20:23:19 +0000 Subject: [PATCH] Testing change for failing unit test Review URL: http://codereview.chromium.org/3031032 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5151 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/debug.cc | 4 +++- src/ia32/debug-ia32.cc | 7 ++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/debug.cc b/src/debug.cc index 5d386cc..1afbfc1 100644 --- a/src/debug.cc +++ b/src/debug.cc @@ -1787,7 +1787,9 @@ void Debug::FramesHaveBeenDropped(StackFrame::Id new_break_frame_id, thread_local_.frame_drop_mode_ = mode; thread_local_.break_frame_id_ = new_break_frame_id; thread_local_.restarter_frame_function_pointer_ = - restarter_frame_function_pointer; + // Temporary disabled for failing test investigation. + // restarter_frame_function_pointer; + NULL; } diff --git a/src/ia32/debug-ia32.cc b/src/ia32/debug-ia32.cc index dfa6634..fa137fc 100644 --- a/src/ia32/debug-ia32.cc +++ b/src/ia32/debug-ia32.cc @@ -265,9 +265,10 @@ void Debug::GeneratePlainReturnLiveEdit(MacroAssembler* masm) { // -- context // -- frame base void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) { - ExternalReference restarter_frame_function_slot = - ExternalReference(Debug_Address::RestarterFrameFunctionPointer()); - __ mov(Operand::StaticVariable(restarter_frame_function_slot), Immediate(0)); + // Temporary disabled for failing test investigation. + //ExternalReference restarter_frame_function_slot = + // ExternalReference(Debug_Address::RestarterFrameFunctionPointer()); + //__ mov(Operand::StaticVariable(restarter_frame_function_slot), Immediate(0)); // We do not know our frame height, but set esp based on ebp. __ lea(esp, Operand(ebp, -4 * kPointerSize)); -- 2.7.4