1bits 64
2add [rax], dword 4		; illegal; must use dword [eax], 4
3add [rax], strict dword 4	; illegal; must use dword [eax], strict dword 4
4add [rax], qword 4		; illegal; must use qword [rax], 4
5add [rax], strict qword 4	; illegal; must use qword [eax], strict dword 4
6