aboutsummaryrefslogtreecommitdiff
path: root/modules/arch/x86/tests/strict-err.asm
blob: 3a97062df950aa2c87607102b177603cfc6601f7 (plain)
1
2
3
4
5
bits 64
add [rax], dword 4		; illegal; must use dword [eax], 4
add [rax], strict dword 4	; illegal; must use dword [eax], strict dword 4
add [rax], qword 4		; illegal; must use qword [rax], 4
add [rax], strict qword 4	; illegal; must use qword [eax], strict dword 4