| Index: test/unittests/compiler/int64-lowering-unittest.cc
|
| diff --git a/test/unittests/compiler/int64-lowering-unittest.cc b/test/unittests/compiler/int64-lowering-unittest.cc
|
| index 6e79c0a03124c7ae77d8c01f4448c3ab0a8ebf2c..2afeed6c00155ca5e079fe2d83f87f28e36e083b 100644
|
| --- a/test/unittests/compiler/int64-lowering-unittest.cc
|
| +++ b/test/unittests/compiler/int64-lowering-unittest.cc
|
| @@ -610,12 +610,12 @@ TEST_F(Int64LoweringTest, F64ReinterpretI64) {
|
| IsStore(StoreRepresentation(MachineRepresentation::kWord32,
|
| WriteBarrierKind::kNoWriteBarrier),
|
| AllOf(CaptureEq(&stack_slot_capture), stack_slot_matcher),
|
| - IsInt32Constant(Int64Lowering::kLowerWordOffset),
|
| + IsInt32Constant(kInt64LowerHalfMemoryOffset),
|
| IsInt32Constant(low_word_value(0)),
|
| IsStore(StoreRepresentation(MachineRepresentation::kWord32,
|
| WriteBarrierKind::kNoWriteBarrier),
|
| AllOf(CaptureEq(&stack_slot_capture), stack_slot_matcher),
|
| - IsInt32Constant(Int64Lowering::kHigherWordOffset),
|
| + IsInt32Constant(kInt64UpperHalfMemoryOffset),
|
| IsInt32Constant(high_word_value(0)), start(), start()),
|
| start());
|
|
|
| @@ -647,11 +647,11 @@ TEST_F(Int64LoweringTest, I64ReinterpretF64) {
|
| graph()->end()->InputAt(1),
|
| IsReturn2(IsLoad(MachineType::Int32(),
|
| AllOf(CaptureEq(&stack_slot), stack_slot_matcher),
|
| - IsInt32Constant(Int64Lowering::kLowerWordOffset),
|
| + IsInt32Constant(kInt64LowerHalfMemoryOffset),
|
| AllOf(CaptureEq(&store), store_matcher), start()),
|
| IsLoad(MachineType::Int32(),
|
| AllOf(CaptureEq(&stack_slot), stack_slot_matcher),
|
| - IsInt32Constant(Int64Lowering::kHigherWordOffset),
|
| + IsInt32Constant(kInt64UpperHalfMemoryOffset),
|
| AllOf(CaptureEq(&store), store_matcher), start()),
|
| start(), start()));
|
| }
|
|
|