0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-07-24 10:25:42 -04:00
nasm/travis/test/br3392259.asm
Cyrill Gorcunov 634b0e405b test: nasm-t -- Add br3392259
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
2018-11-11 21:43:46 +03:00

8 lines
289 B
NASM

[BITS 64]
vmovntdqa ymm1, yword [rsi] ; fails: "error: invalid combination of opcode and operands"
vmovntdqa ymm1, [rsi] ; works
vmovntdqa xmm1, oword [rsi] ; works
movntdqa xmm1, oword [rsi] ; fails, see bug 978756: "error: mismatch in operand sizes"
movntdqa xmm1, [rsi] ; works