Revision: 23604
Author: [email protected]
Date: Tue Sep 2 11:45:37 2014 UTC
Log: Another Win64 build fix
[email protected]
BUG=
Review URL: https://codereview.chromium.org/527253002
https://code.google.com/p/v8/source/detail?r=23604
Modified:
/branches/bleeding_edge/src/compiler/js-generic-lowering.cc
=======================================
--- /branches/bleeding_edge/src/compiler/js-generic-lowering.cc Tue Sep 2
11:36:55 2014 UTC
+++ /branches/bleeding_edge/src/compiler/js-generic-lowering.cc Tue Sep 2
11:45:37 2014 UTC
@@ -323,8 +323,9 @@
inputs.push_back(NodeProperties::GetEffectInput(node));
inputs.push_back(NodeProperties::GetControlInput(node));
}
- Node* compare = graph()->NewNode(common()->Call(desc_compare),
inputs.size(),
- &inputs.front());
+ Node* compare =
+ graph()->NewNode(common()->Call(desc_compare),
+ static_cast<int>(inputs.size()), &inputs.front());
node->ReplaceInput(0, compare);
node->ReplaceInput(1, SmiConstant(token));
--
--
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.