| 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 9e7b1eecbd9410bebdbfe631dd1423437d9ffeff..55f23a65116f52817785e0324225542c3f694f72 100644
|
| --- a/test/unittests/compiler/js-typed-lowering-unittest.cc
|
| +++ b/test/unittests/compiler/js-typed-lowering-unittest.cc
|
| @@ -659,9 +659,9 @@ TEST_F(JSTypedLoweringTest, JSLoadPropertyFromExternalTypedArray) {
|
| Node* context = UndefinedConstant();
|
| Node* effect = graph()->start();
|
| Node* control = graph()->start();
|
| - Reduction r =
|
| - Reduce(graph()->NewNode(javascript()->LoadProperty(feedback), base, key,
|
| - context, EmptyFrameState(), effect, control));
|
| + Reduction r = Reduce(graph()->NewNode(javascript()->LoadProperty(feedback),
|
| + base, key, context, EmptyFrameState(),
|
| + EmptyFrameState(), effect, control));
|
|
|
| Matcher<Node*> offset_matcher =
|
| element_size == 1
|
| @@ -700,9 +700,9 @@ TEST_F(JSTypedLoweringTest, JSLoadPropertyFromExternalTypedArrayWithSafeKey) {
|
| Node* context = UndefinedConstant();
|
| Node* effect = graph()->start();
|
| Node* control = graph()->start();
|
| - Reduction r =
|
| - Reduce(graph()->NewNode(javascript()->LoadProperty(feedback), base, key,
|
| - context, EmptyFrameState(), effect, control));
|
| + Reduction r = Reduce(graph()->NewNode(javascript()->LoadProperty(feedback),
|
| + base, key, context, EmptyFrameState(),
|
| + EmptyFrameState(), effect, control));
|
|
|
| ASSERT_TRUE(r.Changed());
|
| EXPECT_THAT(
|
|
|