Revision: 23805
Author: [email protected]
Date: Tue Sep 9 13:26:37 2014 UTC
Log: Fix size_t to int conversion compile error.
BUG=
[email protected]
Review URL: https://codereview.chromium.org/552313002
https://code.google.com/p/v8/source/detail?r=23805
Modified:
/branches/bleeding_edge/src/compiler/js-inlining.cc
=======================================
--- /branches/bleeding_edge/src/compiler/js-inlining.cc Tue Sep 9 13:20:09
2014 UTC
+++ /branches/bleeding_edge/src/compiler/js-inlining.cc Tue Sep 9 13:26:37
2014 UTC
@@ -171,8 +171,8 @@
// Reuse the operator in the copy. This assumes that op lives in a zone
// that lives longer than graph()'s zone.
- Node* copy =
- target_graph_->NewNode(original->op(), inputs.size(),
&inputs.front());
+ Node* copy = target_graph_->NewNode(
+ original->op(), static_cast<int>(inputs.size()), &inputs.front());
copies_[original->id()] = copy;
return GenericGraphVisit::CONTINUE;
}
--
--
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.