Testing change for failing unit test
authorpeter.rybin@gmail.com <peter.rybin@gmail.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Thu, 29 Jul 2010 20:23:19 +0000 (20:23 +0000)
committerpeter.rybin@gmail.com <peter.rybin@gmail.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Thu, 29 Jul 2010 20:23:19 +0000 (20:23 +0000)
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
src/ia32/debug-ia32.cc

index 5d386cc..1afbfc1 100644 (file)
@@ -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;
 }
 
 
index dfa6634..fa137fc 100644 (file)
@@ -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));