Commit f6517b04 authored by peter.rybin@gmail.com's avatar peter.rybin@gmail.com

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
parent 16709ee6
......@@ -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;
}
......
......@@ -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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment