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(), |