Revision: 15232
Author:   [email protected]
Date:     Thu Jun 20 04:03:04 2013
Log:      windows test fix for 15221

[email protected]
BUG=

Review URL: https://codereview.chromium.org/16831020
http://code.google.com/p/v8/source/detail?r=15232

Modified:
 /branches/bleeding_edge/src/x64/stub-cache-x64.cc

=======================================
--- /branches/bleeding_edge/src/x64/stub-cache-x64.cc Wed Jun 19 02:25:24 2013 +++ /branches/bleeding_edge/src/x64/stub-cache-x64.cc Thu Jun 20 04:03:04 2013
@@ -1315,8 +1315,8 @@
     Register reg,
     Handle<ExecutableAccessorInfo> callback) {
// Insert additional parameters into the stack frame above return address.
-  ASSERT(!scratch2().is(reg));
-  __ pop(scratch2());  // Get return address to place it below.
+  ASSERT(!scratch4().is(reg));
+  __ pop(scratch4());  // Get return address to place it below.

   __ push(receiver());  // receiver
   __ push(reg);  // holder
@@ -1354,9 +1354,9 @@
   Register name_arg = rdi;
 #endif

-  ASSERT(!name_arg.is(scratch2()));
+  ASSERT(!name_arg.is(scratch4()));
   __ movq(name_arg, rsp);
-  __ push(scratch2());  // Restore return address.
+  __ push(scratch4());  // Restore return address.

   // v8::Arguments::values_ and handler for name.
   const int kStackSpace = PropertyCallbackArguments::kArgsLength + 1;

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to