aboutsummaryrefslogtreecommitdiffstats
path: root/test/insertps.asm
blob: d66240d8790c359911c134745804ccdc6777023c (plain)
1
2
3
4
5
6
7
8
9
10
	bits 64
	insertps xmm0,xmm1,16
	insertps xmm0,dword xmm1,16
	insertps xmm0,xmm1,byte 16
	insertps xmm0,dword xmm1,byte 16

	insertps xmm0,[rax],16
	insertps xmm0,dword [rax],16
	insertps xmm0,[rax],byte 16
	insertps xmm0,dword [rax],byte 16