| Index: test/unittests/compiler/js-intrinsic-lowering-unittest.cc
|
| diff --git a/test/unittests/compiler/js-intrinsic-lowering-unittest.cc b/test/unittests/compiler/js-intrinsic-lowering-unittest.cc
|
| index 2b829fdca54eacf0903b1cc4d65f0a3573f8e143..324c82761ecff89c2bf081bf6e68d58cba47b6a8 100644
|
| --- a/test/unittests/compiler/js-intrinsic-lowering-unittest.cc
|
| +++ b/test/unittests/compiler/js-intrinsic-lowering-unittest.cc
|
| @@ -397,24 +397,6 @@ TEST_F(JSIntrinsicLoweringTest, InlineMathSqrt) {
|
|
|
|
|
| // -----------------------------------------------------------------------------
|
| -// %_StringGetLength
|
| -
|
| -
|
| -TEST_F(JSIntrinsicLoweringTest, InlineStringGetLength) {
|
| - Node* const input = Parameter(0);
|
| - Node* const context = Parameter(1);
|
| - Node* const effect = graph()->start();
|
| - Node* const control = graph()->start();
|
| - Reduction const r = Reduce(graph()->NewNode(
|
| - javascript()->CallRuntime(Runtime::kInlineStringGetLength, 1), input,
|
| - context, effect, control));
|
| - ASSERT_TRUE(r.Changed());
|
| - EXPECT_THAT(r.replacement(), IsLoadField(AccessBuilder::ForStringLength(),
|
| - input, effect, control));
|
| -}
|
| -
|
| -
|
| -// -----------------------------------------------------------------------------
|
| // %_MathClz32
|
|
|
|
|
|
|