Revision: 6915
Author: [email protected]
Date: Wed Feb 23 05:52:11 2011
Log: Temporarily disable DoStoreContextSlot in x64 lithium codegen to diagnose non-reproducible buildbot error. Fix presubmit error.
Review URL: http://codereview.chromium.org/6572002
http://code.google.com/p/v8/source/detail?r=6915

Modified:
 /branches/bleeding_edge/src/x64/lithium-codegen-x64.cc
 /branches/bleeding_edge/src/x64/lithium-x64.cc

=======================================
--- /branches/bleeding_edge/src/x64/lithium-codegen-x64.cc Wed Feb 23 05:26:28 2011 +++ /branches/bleeding_edge/src/x64/lithium-codegen-x64.cc Wed Feb 23 05:52:11 2011
@@ -2209,7 +2209,7 @@
   Register context = ToRegister(instr->context());
   Register result = ToRegister(instr->result());
   __ movq(result,
-         Operand(context, Context::SlotOffset(Context::CLOSURE_INDEX)));
+          Operand(context, Context::SlotOffset(Context::CLOSURE_INDEX)));
   __ movq(result, FieldOperand(result, JSFunction::kContextOffset));
 }

=======================================
--- /branches/bleeding_edge/src/x64/lithium-x64.cc      Wed Feb 23 05:26:28 2011
+++ /branches/bleeding_edge/src/x64/lithium-x64.cc      Wed Feb 23 05:52:11 2011
@@ -1710,6 +1710,7 @@


 LInstruction* LChunkBuilder::DoStoreContextSlot(HStoreContextSlot* instr) {
+ Abort("Unimplemented: DoStoreContextSlot"); // Temporarily disabled (whesse).
   LOperand* context;
   LOperand* value;
   if (instr->NeedsWriteBarrier()) {

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to