Revision: 5117
Author: [email protected]
Date: Thu Jul 22 02:01:00 2010
Log: Fix Win64 build.

[email protected]
Review URL: http://codereview.chromium.org/3017024
http://code.google.com/p/v8/source/detail?r=5117

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

=======================================
--- /branches/bleeding_edge/src/x64/codegen-x64.cc      Wed Jul 21 23:31:49 2010
+++ /branches/bleeding_edge/src/x64/codegen-x64.cc      Thu Jul 22 02:01:00 2010
@@ -8069,9 +8069,9 @@
     __ lea(scratch.reg(), Operand(receiver.reg(), offset));
     __ RecordWriteHelper(receiver.reg(), scratch.reg(), value.reg());
     if (FLAG_debug_code) {
-      __ movq(receiver.reg(), Immediate(BitCast<int64_t>(kZapValue)));
-      __ movq(value.reg(), Immediate(BitCast<int64_t>(kZapValue)));
-      __ movq(scratch.reg(), Immediate(BitCast<int64_t>(kZapValue)));
+ __ movq(receiver.reg(), BitCast<int64_t>(kZapValue), RelocInfo::NONE);
+      __ movq(value.reg(), BitCast<int64_t>(kZapValue), RelocInfo::NONE);
+      __ movq(scratch.reg(), BitCast<int64_t>(kZapValue), RelocInfo::NONE);
     }
     __ bind(&skip_write_barrier);
     value.Unuse();

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

Reply via email to