Fixed arguments to _mm_set_epi64x

pull/239/head
Jeffrey Walton 2016-07-23 22:09:26 -04:00
parent f532b02a96
commit d8638a597f
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ inline __m128i _mm_set_epi64x(const uint64_t a, const uint64_t b)
}; };
INT_128_64 v; INT_128_64 v;
v.v64[0] = a; v.v64[1] = b; v.v64[0] = b; v.v64[1] = a;
return v.v128; return v.v128;
} }
#endif #endif