| OLD | NEW |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 #include "src/wasm/asm-types.h" | 5 #include "src/asmjs/asm-types.h" |
| 6 | 6 |
| 7 #include <unordered_map> | 7 #include <unordered_map> |
| 8 #include <unordered_set> | 8 #include <unordered_set> |
| 9 | 9 |
| 10 #include "src/base/macros.h" | 10 #include "src/base/macros.h" |
| 11 #include "test/unittests/test-utils.h" | 11 #include "test/unittests/test-utils.h" |
| 12 #include "testing/gmock/include/gmock/gmock.h" | 12 #include "testing/gmock/include/gmock/gmock.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 14 | 14 |
| 15 namespace v8 { | 15 namespace v8 { |
| (...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 for (size_t ii = 0; ii < arraysize(test_types); ++ii) { | 720 for (size_t ii = 0; ii < arraysize(test_types); ++ii) { |
| 721 EXPECT_EQ(StoreTypeForType(test_types[ii]), test_types[ii]->StoreType()) | 721 EXPECT_EQ(StoreTypeForType(test_types[ii]), test_types[ii]->StoreType()) |
| 722 << test_types[ii]->Name(); | 722 << test_types[ii]->Name(); |
| 723 } | 723 } |
| 724 } | 724 } |
| 725 | 725 |
| 726 } // namespace | 726 } // namespace |
| 727 } // namespace wasm | 727 } // namespace wasm |
| 728 } // namespace internal | 728 } // namespace internal |
| 729 } // namespace v8 | 729 } // namespace v8 |
| OLD | NEW |