Revision: 24720
Author: [email protected]
Date: Mon Oct 20 08:16:26 2014 UTC
Log: Fix Win64 size_t/int conversion after b3f2277ea42a.
[email protected]
Review URL: https://codereview.chromium.org/646983005
https://code.google.com/p/v8/source/detail?r=24720
Modified:
/branches/bleeding_edge/src/compiler/register-allocator.cc
=======================================
--- /branches/bleeding_edge/src/compiler/register-allocator.cc Mon Oct 20
07:32:01 2014 UTC
+++ /branches/bleeding_edge/src/compiler/register-allocator.cc Mon Oct 20
08:16:26 2014 UTC
@@ -533,7 +533,7 @@
for (auto succ : block->successors()) {
// Add values live on entry to the successor. Note the successor's
// live_in will not be computed yet for backwards edges.
- BitVector* live_in = live_in_sets_[succ.ToSize()];
+ BitVector* live_in = live_in_sets_[static_cast<int>(succ.ToSize())];
if (live_in != NULL) live_out->Union(*live_in);
// All phi input operands corresponding to this successor edge are live
--
--
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.