mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-26 20:12:59 +00:00
11 lines
196 B
C++
11 lines
196 B
C++
|
#include <smmintrin.h>
|
||
|
|
||
|
int main() {
|
||
|
const __m128 fv = _mm_set1_ps(1.0f);
|
||
|
const __m128 fv2 = _mm_set1_ps(2.0f);
|
||
|
|
||
|
const __m128 ans = _mm_blend_ps(fv, fv2, 2);
|
||
|
|
||
|
return ((int *)(&ans))[0];
|
||
|
}
|