Revision: 24898
Author:   [email protected]
Date:     Mon Oct 27 10:29:52 2014 UTC
Log:      Fix Win64 build after r24896

[email protected]

Review URL: https://codereview.chromium.org/646943007
https://code.google.com/p/v8/source/detail?r=24898

Modified:
 /branches/bleeding_edge/src/compiler/generic-node-inl.h

=======================================
--- /branches/bleeding_edge/src/compiler/generic-node-inl.h Mon Oct 27 10:12:16 2014 UTC +++ /branches/bleeding_edge/src/compiler/generic-node-inl.h Mon Oct 27 10:29:52 2014 UTC
@@ -236,8 +236,7 @@
S* GenericNode<B, S>::New(GenericGraphBase* graph, int input_count, S** inputs,
                           bool has_extensible_inputs) {
   size_t node_size = sizeof(GenericNode);
-  size_t reserve_input_count =
-      has_extensible_inputs ? kDefaultReservedInputs : 0;
+ int reserve_input_count = has_extensible_inputs ? kDefaultReservedInputs : 0;
   size_t inputs_size = (input_count + reserve_input_count) * sizeof(Input);
   size_t uses_size = input_count * sizeof(Use);
   int size = static_cast<int>(node_size + inputs_size + uses_size);

--
--
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/d/optout.

Reply via email to