Reviewers: Benedikt Meurer,
Message:
Committed patchset #1 (id:1) manually as 23604 (presubmit successful).
Description:
Another Win64 build fix
[email protected]
BUG=
Committed: https://code.google.com/p/v8/source/detail?r=23604
Please review this at https://codereview.chromium.org/527253002/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+3, -2 lines):
M src/compiler/js-generic-lowering.cc
Index: src/compiler/js-generic-lowering.cc
diff --git a/src/compiler/js-generic-lowering.cc
b/src/compiler/js-generic-lowering.cc
index
017b809bc8f5ffa880f97df3817f6c8b0b02841e..e7aa69d1032cdfb837aecd907d2eae25a465a552
100644
--- a/src/compiler/js-generic-lowering.cc
+++ b/src/compiler/js-generic-lowering.cc
@@ -323,8 +323,9 @@ void JSGenericLowering::ReplaceWithCompareIC(Node*
node, Token::Value token,
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.