diff options
Diffstat (limited to 'libcxx/test/std/experimental/simd/simd.mem/store.pass.cpp')
-rw-r--r-- | libcxx/test/std/experimental/simd/simd.mem/store.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/experimental/simd/simd.mem/store.pass.cpp b/libcxx/test/std/experimental/simd/simd.mem/store.pass.cpp index 3faf400006a..3cc3d1fa14d 100644 --- a/libcxx/test/std/experimental/simd/simd.mem/store.pass.cpp +++ b/libcxx/test/std/experimental/simd/simd.mem/store.pass.cpp @@ -85,10 +85,12 @@ void test_converting_store() { assert(buffer[3] == 8.); } -int main() { +int main(int, char**) { // TODO: adjust the tests when this assertion fails. test_store<ex::native_simd<int32_t>>(); test_store<ex::fixed_size_simd<int32_t, 4>>(); test_converting_store<ex::native_simd<int32_t>>(); test_converting_store<ex::fixed_size_simd<int32_t, 4>>(); + + return 0; } |