Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index 7b44d515b57692994266ed51e1ef4c14bdf1ebb8..22240158e042bd1705f1d82eb1e7e2d2259f69c2 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -443,7 +443,7 @@ class AstGraphBuilderWithPositions final : public AstGraphBuilder { |
LoopAssignmentAnalysis* loop_assignment, |
TypeHintAnalysis* type_hint_analysis, |
SourcePositionTable* source_positions) |
- : AstGraphBuilder(local_zone, info, jsgraph, loop_assignment, |
+ : AstGraphBuilder(local_zone, info, jsgraph, 1.0f, loop_assignment, |
type_hint_analysis), |
source_positions_(source_positions), |
start_position_(info->shared_info()->start_position()) {} |
@@ -769,7 +769,7 @@ struct GraphBuilderPhase { |
if (data->info()->is_optimizing_from_bytecode()) { |
BytecodeGraphBuilder graph_builder(temp_zone, data->info(), |
- data->jsgraph()); |
+ data->jsgraph(), 1.0f); |
succeeded = graph_builder.CreateGraph(); |
} else { |
AstGraphBuilderWithPositions graph_builder( |