Revision: 5151
Author: [email protected]
Date: Thu Jul 29 13:23:19 2010
Log: Testing change for failing unit test
Review URL: http://codereview.chromium.org/3031032
http://code.google.com/p/v8/source/detail?r=5151
Modified:
/branches/bleeding_edge/src/debug.cc
/branches/bleeding_edge/src/ia32/debug-ia32.cc
=======================================
--- /branches/bleeding_edge/src/debug.cc Thu Jul 29 09:40:14 2010
+++ /branches/bleeding_edge/src/debug.cc Thu Jul 29 13:23:19 2010
@@ -1787,7 +1787,9 @@
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;
}
=======================================
--- /branches/bleeding_edge/src/ia32/debug-ia32.cc Thu Jul 29 09:40:14 2010
+++ /branches/bleeding_edge/src/ia32/debug-ia32.cc Thu Jul 29 13:23:19 2010
@@ -265,9 +265,10 @@
// -- 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));
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev