Reviewers: Lasse Reichstein,

Description:
Temporarily disable DoStoreContextSlot in x64 lithium codegen to diagnose
non-reproducible buildbot error.  Fix presubmit error.

Please review this at http://codereview.chromium.org/6572002/

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     src/x64/lithium-codegen-x64.cc
  M     src/x64/lithium-x64.cc


Index: src/x64/lithium-codegen-x64.cc
===================================================================
--- src/x64/lithium-codegen-x64.cc      (revision 6914)
+++ src/x64/lithium-codegen-x64.cc      (working copy)
@@ -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));
 }

Index: src/x64/lithium-x64.cc
===================================================================
--- src/x64/lithium-x64.cc      (revision 6914)
+++ src/x64/lithium-x64.cc      (working copy)
@@ -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