From: nasm-bot f. C. G. <gor...@gm...> - 2018-11-12 07:01:45
|
Commit-ID: f4c33801a2e74a41c5a13316ca24c7d40e7d028a Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=f4c33801a2e74a41c5a13316ca24c7d40e7d028a Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 11 Nov 2018 18:27:33 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 11 Nov 2018 21:43:46 +0300 test: nasm-t -- Add br3174983 Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- travis/test/br3174983.asm | 6 ++++++ travis/test/br3174983.bin.t | 1 + travis/test/br3174983.json | 18 ++++++++++++++++++ 3 files changed, 25 insertions(+) diff --git a/travis/test/br3174983.asm b/travis/test/br3174983.asm new file mode 100644 index 0000000..48a293a --- /dev/null +++ b/travis/test/br3174983.asm @@ -0,0 +1,6 @@ + bits 32 + vpextrw ecx,xmm0,8 ; c5 f9 c5 c8 08 + vpextrw ecx,xmm2,3 ; c5 f9 c5 ca 03 + + bits 64 + vpextrw rcx,xmm0,8 ; c5 f9 c5 c8 08 diff --git a/travis/test/br3174983.bin.t b/travis/test/br3174983.bin.t new file mode 100644 index 0000000..f5ba588 --- /dev/null +++ b/travis/test/br3174983.bin.t @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/travis/test/br3174983.json b/travis/test/br3174983.json new file mode 100644 index 0000000..0f9646e --- /dev/null +++ b/travis/test/br3174983.json @@ -0,0 +1,18 @@ +[ + { + "description": "Test vpextrw instruction (-Ox)", + "id": "br3174983", + "format": "bin", + "source": "br3174983.asm", + "option": "-Ox", + "target": [ + { "output": "br3174983.bin" } + ] + }, + { + "description": "Test vpextrw instruction (-O0)", + "ref": "br3174983", + "option": "-Ox", + "update": "false" + } +] |