| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // TODO(mythria): Remove this define after this flag is turned on globally | |
| 6 #define V8_IMMINENT_DEPRECATION_WARNINGS | |
| 7 | |
| 8 #include <vector> | 5 #include <vector> |
| 9 | 6 |
| 10 #include "src/crankshaft/hydrogen-types.h" | 7 #include "src/crankshaft/hydrogen-types.h" |
| 11 #include "src/types.h" | 8 #include "src/types.h" |
| 12 #include "test/cctest/cctest.h" | 9 #include "test/cctest/cctest.h" |
| 13 #include "test/cctest/types-fuzz.h" | 10 #include "test/cctest/types-fuzz.h" |
| 14 | 11 |
| 15 using namespace v8::internal; | 12 using namespace v8::internal; |
| 16 | 13 |
| 17 | 14 |
| (...skipping 2111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2129 } | 2126 } |
| 2130 | 2127 |
| 2131 | 2128 |
| 2132 TEST(Convert_heap) { HeapTests().Convert<Type, Type*, Zone, ZoneRep>(); } | 2129 TEST(Convert_heap) { HeapTests().Convert<Type, Type*, Zone, ZoneRep>(); } |
| 2133 | 2130 |
| 2134 | 2131 |
| 2135 TEST(HTypeFromType_zone) { ZoneTests().HTypeFromType(); } | 2132 TEST(HTypeFromType_zone) { ZoneTests().HTypeFromType(); } |
| 2136 | 2133 |
| 2137 | 2134 |
| 2138 TEST(HTypeFromType_heap) { HeapTests().HTypeFromType(); } | 2135 TEST(HTypeFromType_heap) { HeapTests().HTypeFromType(); } |
| OLD | NEW |