| Index: test/compiler-unittests/change-lowering-unittest.cc
|
| diff --git a/test/compiler-unittests/change-lowering-unittest.cc b/test/compiler-unittests/change-lowering-unittest.cc
|
| index 00a9160b8760a37b587816c10aa68eda0ffe4564..4ea125a5f4cd20b51b01f1d30443f4dc64ca1bfb 100644
|
| --- a/test/compiler-unittests/change-lowering-unittest.cc
|
| +++ b/test/compiler-unittests/change-lowering-unittest.cc
|
| @@ -269,7 +269,7 @@ TARGET_TEST_F(ChangeLowering32Test, ChangeTaggedToInt32) {
|
| Capture<Node*> branch, if_true;
|
| EXPECT_THAT(
|
| phi,
|
| - IsPhi(IsTruncateFloat64ToInt32(IsLoad(
|
| + IsPhi(IsChangeFloat64ToInt32(IsLoad(
|
| kMachFloat64, val, IsInt32Constant(HeapNumberValueOffset()),
|
| IsControlEffect(CaptureEq(&if_true)))),
|
| IsWord32Sar(val, IsInt32Constant(SmiShiftAmount())),
|
| @@ -294,7 +294,7 @@ TARGET_TEST_F(ChangeLowering32Test, ChangeTaggedToUint32) {
|
| Capture<Node*> branch, if_true;
|
| EXPECT_THAT(
|
| phi,
|
| - IsPhi(IsTruncateFloat64ToInt32(IsLoad(
|
| + IsPhi(IsChangeFloat64ToUint32(IsLoad(
|
| kMachFloat64, val, IsInt32Constant(HeapNumberValueOffset()),
|
| IsControlEffect(CaptureEq(&if_true)))),
|
| IsWord32Sar(val, IsInt32Constant(SmiShiftAmount())),
|
| @@ -403,7 +403,7 @@ TARGET_TEST_F(ChangeLowering64Test, ChangeTaggedToInt32) {
|
| Capture<Node*> branch, if_true;
|
| EXPECT_THAT(
|
| phi,
|
| - IsPhi(IsTruncateFloat64ToInt32(IsLoad(
|
| + IsPhi(IsChangeFloat64ToInt32(IsLoad(
|
| kMachFloat64, val, IsInt32Constant(HeapNumberValueOffset()),
|
| IsControlEffect(CaptureEq(&if_true)))),
|
| IsTruncateInt64ToInt32(
|
| @@ -429,7 +429,7 @@ TARGET_TEST_F(ChangeLowering64Test, ChangeTaggedToUint32) {
|
| Capture<Node*> branch, if_true;
|
| EXPECT_THAT(
|
| phi,
|
| - IsPhi(IsTruncateFloat64ToInt32(IsLoad(
|
| + IsPhi(IsChangeFloat64ToUint32(IsLoad(
|
| kMachFloat64, val, IsInt32Constant(HeapNumberValueOffset()),
|
| IsControlEffect(CaptureEq(&if_true)))),
|
| IsTruncateInt64ToInt32(
|
|
|