Index: test/cctest/compiler/test-simplified-lowering.cc |
diff --git a/test/cctest/compiler/test-simplified-lowering.cc b/test/cctest/compiler/test-simplified-lowering.cc |
index e4034369d9344f53437b367dc0346f24cb3ab152..5cbc2d9613fabd31cbd3ddf0c0493af45f4465f2 100644 |
--- a/test/cctest/compiler/test-simplified-lowering.cc |
+++ b/test/cctest/compiler/test-simplified-lowering.cc |
@@ -1355,7 +1355,7 @@ TEST(LowerLoadElement_to_load) { |
Node* load = |
t.graph()->NewNode(t.simplified()->LoadElement(access), t.p0, t.p1, |
- t.jsgraph.Int32Constant(1024), t.start); |
+ t.jsgraph.Int32Constant(1024), t.start, t.start); |
Node* use = t.Use(load, machine_reps[i]); |
t.Return(use); |
t.Lower(); |
@@ -1405,7 +1405,7 @@ TEST(InsertChangeForLoadElementIndex) { |
kMachAnyTagged}; |
Node* load = t.graph()->NewNode(t.simplified()->LoadElement(access), t.p0, |
- t.p1, t.p2, t.start); |
+ t.p1, t.p2, t.start, t.start); |
t.Return(load); |
t.Lower(); |
CHECK_EQ(IrOpcode::kLoad, load->opcode()); |
@@ -1445,7 +1445,7 @@ TEST(InsertChangeForLoadElement) { |
kMachFloat64}; |
Node* load = t.graph()->NewNode(t.simplified()->LoadElement(access), t.p0, |
- t.p1, t.p1, t.start); |
+ t.p1, t.p1, t.start, t.start); |
t.Return(load); |
t.Lower(); |
CHECK_EQ(IrOpcode::kLoad, load->opcode()); |