mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-15 03:28:13 +01:00
8 lines
140 B
C
8 lines
140 B
C
|
#include <xmmintrin.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
__m128 a = _mm_add_ps(_mm_setzero_ps(), _mm_setzero_ps());
|
||
|
return (int)_mm_cvtss_f32(a);
|
||
|
}
|