Fix WIN64 build
Review URL: https://codereview.chromium.org/63703002 Patch from Haitao Feng <haitao.feng@intel.com>. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@17538 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
d3c6c4ce0c
commit
4efb05dfe4
@ -2834,7 +2834,7 @@ void CEntryStub::GenerateCore(MacroAssembler* masm,
|
||||
// Return result in single register (rax).
|
||||
__ movq(rcx, r14); // argc.
|
||||
__ movq(rdx, r15); // argv.
|
||||
__ movq(r8, ExternalReference::isolate_address(masm->isolate()));
|
||||
__ Move(r8, ExternalReference::isolate_address(masm->isolate()));
|
||||
} else {
|
||||
ASSERT_EQ(2, result_size_);
|
||||
// Pass a pointer to the result location as the first argument.
|
||||
@ -2842,7 +2842,7 @@ void CEntryStub::GenerateCore(MacroAssembler* masm,
|
||||
// Pass a pointer to the Arguments object as the second argument.
|
||||
__ movq(rdx, r14); // argc.
|
||||
__ movq(r8, r15); // argv.
|
||||
__ movq(r9, ExternalReference::isolate_address(masm->isolate()));
|
||||
__ Move(r9, ExternalReference::isolate_address(masm->isolate()));
|
||||
}
|
||||
|
||||
#else // _WIN64
|
||||
|
Loading…
Reference in New Issue
Block a user