diff options
Diffstat (limited to 'deps/v8/test/cctest/compiler/test-representation-change.cc')
-rw-r--r-- | deps/v8/test/cctest/compiler/test-representation-change.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/deps/v8/test/cctest/compiler/test-representation-change.cc b/deps/v8/test/cctest/compiler/test-representation-change.cc index 55f054a74b..216f9fd847 100644 --- a/deps/v8/test/cctest/compiler/test-representation-change.cc +++ b/deps/v8/test/cctest/compiler/test-representation-change.cc @@ -69,7 +69,7 @@ class RepresentationChangerTester : public HandleAndZoneScope, } void CheckHeapConstant(Node* n, HeapObject* expected) { - HeapObjectMatcher<HeapObject> m(n); + HeapObjectMatcher m(n); CHECK(m.HasValue()); CHECK_EQ(expected, *m.Value().handle()); } @@ -100,9 +100,9 @@ class RepresentationChangerTester : public HandleAndZoneScope, CHECK_EQ(n, c); } }; -} -} -} // namespace v8::internal::compiler +} // namespace compiler +} // namespace internal +} // namespace v8 static const MachineType all_reps[] = {kRepBit, kRepWord32, kRepWord64, |