From 07e6f6f619f191e166ba194950d77405683fff64 Mon Sep 17 00:00:00 2001 From: "whesse@chromium.org" Date: Tue, 8 Sep 2009 12:51:08 +0000 Subject: [PATCH] Fix lint error Review URL: http://codereview.chromium.org/196042 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2846 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/runtime.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime.cc b/src/runtime.cc index 5c4d674..6076bfd 100644 --- a/src/runtime.cc +++ b/src/runtime.cc @@ -4562,8 +4562,8 @@ static Object* Runtime_LookupContext(Arguments args) { // 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; -- 2.7.4