diff options
Diffstat (limited to 'vec_altivec_float4.h')
-rw-r--r-- | vec_altivec_float4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vec_altivec_float4.h b/vec_altivec_float4.h index c5eb28b..9c52734 100644 --- a/vec_altivec_float4.h +++ b/vec_altivec_float4.h @@ -233,7 +233,7 @@ namespace vecmathlib { static int const alignment = sizeof(vector_t); static char const* name() { return "<Altivec:4*float>"; } - void barrier() { __asm__("": "+v" (v)); } + void barrier() { __asm__("": "+v"(v)); } static_assert(size * sizeof(real_t) == sizeof(vector_t), "vector size is wrong"); |