diff options
author | H. Peter Anvin <hpa@zytor.com> | 2010-11-16 09:40:03 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-11-16 09:40:03 -0800 |
commit | bcf9f2a08b6aa26ceb526078f06734e5dcc5a82e (patch) | |
tree | b040bbaada535429e012fcfb9fce3655c5ce0cd2 /test | |
parent | 3136d48212fdbcff131b84514ecdd6e111c139fc (diff) | |
parent | 3cb0e8c052a672424eaf59a021f0dbfb6ef205b8 (diff) | |
download | nasm-bcf9f2a08b6aa26ceb526078f06734e5dcc5a82e.tar.gz nasm-bcf9f2a08b6aa26ceb526078f06734e5dcc5a82e.tar.bz2 nasm-bcf9f2a08b6aa26ceb526078f06734e5dcc5a82e.zip |
Merge branch 'nasm-2.09.xx'
Diffstat (limited to 'test')
-rw-r--r-- | test/br3109604.asm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/br3109604.asm b/test/br3109604.asm new file mode 100644 index 0000000..9032e8d --- /dev/null +++ b/test/br3109604.asm @@ -0,0 +1,9 @@ +;Testname=unoptimized; Arguments=-O0 -fbin -obr3109604.bin; Files=stdout stderr br3109604.bin +;Testname=optimized; Arguments=-Ox -fbin -obr3109604.bin; Files=stdout stderr br3109604.bin + + bits 64 +b0: vmovd xmm2, [rdx+r9] +e0: + + section .data +len: dd e0 - b0 ; Should be 6 |