There was an error while loading. Please reload this page.
1 parent 222b28d commit 14fe56dCopy full SHA for 14fe56d
1 file changed
src/uwvm2/utils/hash/xxh3.h
@@ -984,9 +984,9 @@ UWVM_MODULE_EXPORT namespace uwvm2::utils::hash
984
#elif __has_cpp_attribute(__gnu__::__vector_size__) && defined(__LITTLE_ENDIAN__) && defined(__ARM_NEON)
985
986
# if defined(__clang__)
987
- using uint64x2_t [[clang::neon_vector_type(2)]] = ::std::uint64_t;
988
- using uint32x4_t [[clang::neon_vector_type(4)]] = ::std::uint32_t;
989
- using int8x16_t [[clang::neon_vector_type(16)]] = ::std::int8_t;
+ using uint64x2_t = ::std::uint64_t [[clang::neon_vector_type(2)]];
+ using uint32x4_t = ::std::uint32_t [[clang::neon_vector_type(4)]];
+ using int8x16_t = ::std::int8_t [[clang::neon_vector_type(16)]];
990
# elif defined(__GNUC__)
991
using uint64x2_t = __Uint64x2_t;
992
using uint32x4_t = __Uint32x4_t;
0 commit comments