Index: test/unittests/compiler/js-typed-lowering-unittest.cc |
diff --git a/test/unittests/compiler/js-typed-lowering-unittest.cc b/test/unittests/compiler/js-typed-lowering-unittest.cc |
index aac082840da9df43d4eba87e488c0fec13c29ce5..149c663fa927f3f612661510481664d75cac1dda 100644 |
--- a/test/unittests/compiler/js-typed-lowering-unittest.cc |
+++ b/test/unittests/compiler/js-typed-lowering-unittest.cc |
@@ -1124,12 +1124,11 @@ TEST_F(JSTypedLoweringTest, JSCreateWithContext) { |
Node* const object = Parameter(Type::Receiver()); |
Node* const closure = Parameter(Type::Function()); |
Node* const context = Parameter(Type::Any()); |
- Node* const frame_state = EmptyFrameState(); |
Node* const effect = graph()->start(); |
Node* const control = graph()->start(); |
Reduction r = |
Reduce(graph()->NewNode(javascript()->CreateWithContext(), object, |
- closure, context, frame_state, effect, control)); |
+ closure, context, effect, control)); |
ASSERT_TRUE(r.Changed()); |
EXPECT_THAT(r.replacement(), |
IsFinishRegion(IsAllocate(IsNumberConstant(Context::SizeFor( |