Reviewers: Lasse Reichstein, Message: [email protected]
Description: Fix lint error Please review this at http://codereview.chromium.org/196042 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/runtime.cc Index: src/runtime.cc =================================================================== --- src/runtime.cc (revision 2845) +++ src/runtime.cc (working copy) @@ -4562,8 +4562,8 @@ // variants where a 64-bit value is returned in two 32-bit registers // (edx:eax on ia32, r1:r0 on ARM). // In AMD-64 calling convention a struct of two pointers is returned in rdx:rax. -// In Win64 calling convention, a struct of two pointers is returned in space passed -// as a hidden first parameter. +// In Win64 calling convention, a struct of two pointers is returned in memory, +// allocated by the caller, and passed as a pointer in a hidden first parameter. #ifdef V8_HOST_ARCH_64_BIT struct ObjectPair { Object* x; --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
