From: Konstantinos Margaritis Date: Fri, 16 Sep 2022 09:41:08 +0000 (+0300) Subject: [VSX] clang complains about the order of __vector X-Git-Tag: vectorscan/5.4.9~1^2~1^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F128%2Fhead;p=thirdparty%2Fvectorscan.git [VSX] clang complains about the order of __vector --- diff --git a/src/util/supervector/arch/ppc64el/impl.cpp b/src/util/supervector/arch/ppc64el/impl.cpp index 2eba69b2..295cd128 100644 --- a/src/util/supervector/arch/ppc64el/impl.cpp +++ b/src/util/supervector/arch/ppc64el/impl.cpp @@ -49,7 +49,7 @@ really_inline SuperVector<16>::SuperVector(SuperVector const &other) template<> template<> -really_inline SuperVector<16>::SuperVector(char __bool __vector v) +really_inline SuperVector<16>::SuperVector(__vector __bool char v) { u.u8x16[0] = (uint8x16_t) v; };