Reviewers: Benedikt Meurer,

Message:
Committed patchset #1 (id:1) manually as 24590 (tree was closed).

Description:
build fix

[email protected]

BUG=

Committed: https://code.google.com/p/v8/source/detail?r=24590

Please review this at https://codereview.chromium.org/652163002/

Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+1, -1 lines):
  M src/compiler/instruction.cc


Index: src/compiler/instruction.cc
diff --git a/src/compiler/instruction.cc b/src/compiler/instruction.cc
index 7f575741e39c8bf8e6cd946ae1056621fc171d94..b02f637c5b0481f870714d410fa9cac5b3547065 100644
--- a/src/compiler/instruction.cc
+++ b/src/compiler/instruction.cc
@@ -322,7 +322,7 @@ InstructionSequence::InstructionSequence(Linkage* linkage, Graph* graph,
     : zone_(schedule->zone()),
       node_count_(graph->NodeCount()),
       node_map_(zone()->NewArray<int>(node_count_)),
-      block_data_(schedule->BasicBlockCount(), zone()),
+      block_data_(static_cast<int>(schedule->BasicBlockCount()), zone()),
       linkage_(linkage),
       schedule_(schedule),
       constants_(ConstantMap::key_compare(),


--
--
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.

Reply via email to