mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
1eef781594
BR 3392275 complains about xmm0 having to be explicitly included in the assembly syntax when it is implicit in the encoding. In the interest of "be liberal in what you accept", accept either form in the input. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
13 lines
270 B
NASM
13 lines
270 B
NASM
; BR 3392275: don't require xmm0 to be explicitly declared when implicit
|
|
|
|
bits 32
|
|
|
|
blendvpd xmm2,xmm1,xmm0
|
|
blendvpd xmm2,xmm1
|
|
blendvps xmm2,xmm1,xmm0
|
|
blendvps xmm2,xmm1
|
|
pblendvb xmm2,xmm1,xmm0
|
|
pblendvb xmm2,xmm1
|
|
sha256rnds2 xmm2,xmm1,xmm0
|
|
sha256rnds2 xmm2,xmm1
|