Revision: 14408
Author:   [email protected]
Date:     Wed Apr 24 04:44:39 2013
Log:      Fix clang build for x64.

[email protected]
BUG=

Review URL: https://chromiumcodereview.appspot.com/14471004
http://code.google.com/p/v8/source/detail?r=14408

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

=======================================
--- /branches/bleeding_edge/src/x64/stub-cache-x64.cc Wed Apr 24 00:39:35 2013 +++ /branches/bleeding_edge/src/x64/stub-cache-x64.cc Wed Apr 24 04:44:39 2013
@@ -623,7 +623,8 @@
           ? CALL_AS_FUNCTION
           : CALL_AS_METHOD;
       Handle<JSFunction> fun = optimization.constant_function();
-      __ InvokeFunction(fun, ParameterCount(fun), arguments_,
+      ParameterCount expected(fun);
+      __ InvokeFunction(fun, expected, arguments_,
                         JUMP_FUNCTION, NullCallWrapper(), call_kind);
     }

--
--
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