Revision: 14411
Author: [email protected]
Date: Wed Apr 24 05:21:36 2013
Log: Merged r14408 into trunk branch.
Fix clang build for x64.
[email protected]
Review URL: https://chromiumcodereview.appspot.com/14295020
http://code.google.com/p/v8/source/detail?r=14411
Modified:
/trunk/src/version.cc
/trunk/src/x64/stub-cache-x64.cc
=======================================
--- /trunk/src/version.cc Wed Apr 24 03:59:06 2013
+++ /trunk/src/version.cc Wed Apr 24 05:21:36 2013
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 18
#define BUILD_NUMBER 3
-#define PATCH_LEVEL 0
+#define PATCH_LEVEL 1
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
#define IS_CANDIDATE_VERSION 0
=======================================
--- /trunk/src/x64/stub-cache-x64.cc Wed Apr 24 03:59:06 2013
+++ /trunk/src/x64/stub-cache-x64.cc Wed Apr 24 05:21:36 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.