diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2011-03-12 22:35:42 +0300 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2011-03-12 22:35:42 +0300 |
commit | a09fe1ebfb6516a00a6b8d83d12586b0625b4981 (patch) | |
tree | b50ad2a01eaf54350b0acb45cee81100780f60ed /test | |
parent | 8dcfd883c76b248fcafea2bda6e71acac9e7c052 (diff) | |
parent | faa13a241426bc8d7c4538ce92f46d01ca94f47b (diff) | |
download | nasm-a09fe1ebfb6516a00a6b8d83d12586b0625b4981.tar.gz nasm-a09fe1ebfb6516a00a6b8d83d12586b0625b4981.tar.bz2 nasm-a09fe1ebfb6516a00a6b8d83d12586b0625b4981.zip |
Merge branch 'nasm-2.09.xx'
Conflicts:
doc/changes.src
version
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/br3189064.asm | 7 | ||||
-rw-r--r-- | test/br3200749.asm | 9 |
2 files changed, 16 insertions, 0 deletions
diff --git a/test/br3189064.asm b/test/br3189064.asm new file mode 100644 index 0000000..d62df50 --- /dev/null +++ b/test/br3189064.asm @@ -0,0 +1,7 @@ +;Testname=unoptimized; Arguments=-O0 -fbin -obr3189064.bin; Files=stdout stderr br3189064.bin +;Testname=optimized; Arguments=-Ox -fbin -obr3189064.bin; Files=stdout stderr br3189064.bin + +[bits 64] + VMASKMOVPS [edi],ymm0,ymm1 + VEXTRACTF128 xmm0,ymm1,1 + VEXTRACTF128 [edi],ymm1,1 diff --git a/test/br3200749.asm b/test/br3200749.asm new file mode 100644 index 0000000..79e35f8 --- /dev/null +++ b/test/br3200749.asm @@ -0,0 +1,9 @@ +;Testname=unoptimized; Arguments=-O0 -fbin -obr3200749.bin; Files=stdout stderr br3200749.bin +;Testname=optimized; Arguments=-Ox -fbin -obr3200749.bin; Files=stdout stderr br3200749.bin +%define IFNDEF %ifndef +%define ENDIF %endif + +IFNDEF foo + ; bar +ENDIF + |