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 6e2480e51e2813f6f362b84df0ff8ffb415349fb..a72f8bb2bbd1f05495a2190352bf7f88a7334963 100644 |
--- a/test/cctest/compiler/test-simplified-lowering.cc |
+++ b/test/cctest/compiler/test-simplified-lowering.cc |
@@ -1938,10 +1938,10 @@ TEST(NumberModulus_TruncatingToUint32) { |
Node* k = t.jsgraph.Constant(constants[i]); |
Node* mod = t.graph()->NewNode(t.simplified()->NumberModulus(), t.p0, k); |
Node* trunc = t.graph()->NewNode(t.simplified()->NumberToUint32(), mod); |
- Node* ret = t.Return(trunc); |
+ t.Return(trunc); |
t.Lower(); |
- CHECK_EQ(IrOpcode::kUint32Mod, ret->InputAt(0)->opcode()); |
+ CHECK_EQ(IrOpcode::kUint32Mod, t.ret->InputAt(0)->InputAt(0)->opcode()); |
} |
} |