| 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 7060a90cf7b2ca7c0c5a74f20ef4633195e77601..1b8a87e8b2c83055a5a1bab9d97f42f0b637b73e 100644
|
| --- a/test/unittests/compiler/js-intrinsic-lowering-unittest.cc
|
| +++ b/test/unittests/compiler/js-intrinsic-lowering-unittest.cc
|
| @@ -52,8 +52,8 @@ TEST_F(JSIntrinsicLoweringTest, InlineOptimizedConstructDouble) {
|
| Node* const effect = graph()->start();
|
| Node* const control = graph()->start();
|
| Reduction const r = Reduce(graph()->NewNode(
|
| - javascript()->CallRuntime(Runtime::kInlineOptimizedConstructDouble, 2),
|
| - input0, input1, context, effect, control));
|
| + javascript()->CallRuntime(Runtime::kInlineConstructDouble, 2), input0,
|
| + input1, context, effect, control));
|
| ASSERT_TRUE(r.Changed());
|
| EXPECT_THAT(r.replacement(), IsFloat64InsertHighWord32(
|
| IsFloat64InsertLowWord32(
|
| @@ -71,9 +71,9 @@ TEST_F(JSIntrinsicLoweringTest, InlineOptimizedDoubleLo) {
|
| Node* const context = Parameter(1);
|
| Node* const effect = graph()->start();
|
| Node* const control = graph()->start();
|
| - Reduction const r = Reduce(graph()->NewNode(
|
| - javascript()->CallRuntime(Runtime::kInlineOptimizedDoubleLo, 1), input,
|
| - context, effect, control));
|
| + Reduction const r = Reduce(
|
| + graph()->NewNode(javascript()->CallRuntime(Runtime::kInlineDoubleLo, 1),
|
| + input, context, effect, control));
|
| ASSERT_TRUE(r.Changed());
|
| EXPECT_THAT(r.replacement(), IsFloat64ExtractLowWord32(input));
|
| }
|
| @@ -88,9 +88,9 @@ TEST_F(JSIntrinsicLoweringTest, InlineOptimizedDoubleHi) {
|
| Node* const context = Parameter(1);
|
| Node* const effect = graph()->start();
|
| Node* const control = graph()->start();
|
| - Reduction const r = Reduce(graph()->NewNode(
|
| - javascript()->CallRuntime(Runtime::kInlineOptimizedDoubleHi, 1), input,
|
| - context, effect, control));
|
| + Reduction const r = Reduce(
|
| + graph()->NewNode(javascript()->CallRuntime(Runtime::kInlineDoubleHi, 1),
|
| + input, context, effect, control));
|
| ASSERT_TRUE(r.Changed());
|
| EXPECT_THAT(r.replacement(), IsFloat64ExtractHighWord32(input));
|
| }
|
|
|