diff options
Diffstat (limited to 'deps/v8/test/unittests/compiler/int64-lowering-unittest.cc')
-rw-r--r-- | deps/v8/test/unittests/compiler/int64-lowering-unittest.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/deps/v8/test/unittests/compiler/int64-lowering-unittest.cc b/deps/v8/test/unittests/compiler/int64-lowering-unittest.cc index 2afeed6c00..5604b81ecd 100644 --- a/deps/v8/test/unittests/compiler/int64-lowering-unittest.cc +++ b/deps/v8/test/unittests/compiler/int64-lowering-unittest.cc @@ -603,7 +603,8 @@ TEST_F(Int64LoweringTest, F64ReinterpretI64) { MachineRepresentation::kFloat64); Capture<Node*> stack_slot_capture; - Matcher<Node*> stack_slot_matcher = IsStackSlot(sizeof(int64_t)); + Matcher<Node*> stack_slot_matcher = + IsStackSlot(StackSlotRepresentation(sizeof(int64_t), 0)); Capture<Node*> store_capture; Matcher<Node*> store_matcher = @@ -634,7 +635,8 @@ TEST_F(Int64LoweringTest, I64ReinterpretF64) { MachineRepresentation::kWord64); Capture<Node*> stack_slot; - Matcher<Node*> stack_slot_matcher = IsStackSlot(sizeof(int64_t)); + Matcher<Node*> stack_slot_matcher = + IsStackSlot(StackSlotRepresentation(sizeof(int64_t), 0)); Capture<Node*> store; Matcher<Node*> store_matcher = IsStore( |