Reviewers: dcarney,
Message:
Committed patchset #1 (id:1) manually as 24720 (presubmit successful).
Description:
Fix Win64 size_t/int conversion after b3f2277ea42a.
[email protected]
Committed: https://code.google.com/p/v8/source/detail?r=24720
Please review this at https://codereview.chromium.org/646983005/
Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+1, -1 lines):
M src/compiler/register-allocator.cc
Index: src/compiler/register-allocator.cc
diff --git a/src/compiler/register-allocator.cc
b/src/compiler/register-allocator.cc
index
b5dbcaf0edcccd21fabea08608ab8e48e61721fe..6499554db29d103d3f049dc82445b0bf589c02d0
100644
--- a/src/compiler/register-allocator.cc
+++ b/src/compiler/register-allocator.cc
@@ -533,7 +533,7 @@ BitVector* RegisterAllocator::ComputeLiveOut(const
InstructionBlock* block) {
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.