This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/mpsllqi.c

16 lines
247 B
C

#include <stdio.h>
#include <mmintrin.h>
#define AS_QWORD "%16.16Lx"
__m64 a;
__m64 b = { 0x3f04800300020001 };
void main()
{
a = _m_psllqi( b, 2 );
printf( "m ="AS_QWORD"\n"
"mm="AS_QWORD"\n",
b, a );
}