Merge "Fix clang-format warnings in aom_dsp/simd/v64_intrinsics_arm.h" into nextgenv2

This commit is contained in:
Yaowu Xu
2016-10-11 18:41:50 +00:00
committed by Gerrit Code Review

View File

@@ -71,7 +71,7 @@ SIMD_INLINE void u32_store_unaligned(void *p, uint32_t a) {
#elif __GNUC__ #elif __GNUC__
*((__attribute((packed)) uint32_t *)p) = a; *((__attribute((packed)) uint32_t *)p) = a;
#else #else
vst1_lane_u32((uint32_t*)p, vreinterpret_u32_s64(a), 0); vst1_lane_u32((uint32_t *)p, vreinterpret_u32_s64(a), 0);
#endif #endif
} }