diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-08-28 17:54:55 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-08-28 17:54:55 -0700 |
commit | dd1de39ece79b990a77a9175570bc82d54f9e692 (patch) | |
tree | 25e1ad8e4c6adb7bd2b291c61c637602681d8e46 /test | |
parent | 3ba3af3290cfb3abb029bb3fc71590ebd090f459 (diff) | |
download | nasm-dd1de39ece79b990a77a9175570bc82d54f9e692.tar.gz nasm-dd1de39ece79b990a77a9175570bc82d54f9e692.tar.bz2 nasm-dd1de39ece79b990a77a9175570bc82d54f9e692.zip |
BR 2028995: Missing MOVNTI m64, r64
Fix MOVNTI with a 64-bit argument.
Diffstat (limited to 'test')
-rw-r--r-- | test/movnti.asm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/movnti.asm b/test/movnti.asm new file mode 100644 index 0000000..d20d3c1 --- /dev/null +++ b/test/movnti.asm @@ -0,0 +1,10 @@ +;Testname=test; Arguments=-fbin -omovnti.bin; Files=.stdout .stderr movnti.bin +; BR 2028995 + + bits 16 + movnti [si],eax + bits 32 + movnti [esi],eax + bits 64 + movnti [rsi],eax + movnti [rsi],rax |