From: dcarney@chromium.org Date: Thu, 20 Jun 2013 11:03:04 +0000 (+0000) Subject: windows test fix for 15221 X-Git-Tag: upstream/4.7.83~13759 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3a5e4c45a6791d1b1f5ec2de1e893a982ab0030e;p=platform%2Fupstream%2Fv8.git windows test fix for 15221 TBR=svenpanne@chromium.org BUG= Review URL: https://codereview.chromium.org/16831020 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15232 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/x64/stub-cache-x64.cc b/src/x64/stub-cache-x64.cc index f42b1b8..25fb710 100644 --- a/src/x64/stub-cache-x64.cc +++ b/src/x64/stub-cache-x64.cc @@ -1315,8 +1315,8 @@ void BaseLoadStubCompiler::GenerateLoadCallback( Register reg, Handle 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 @@ void BaseLoadStubCompiler::GenerateLoadCallback( 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;