From 767a4e8313185326a00bc771b0086a3bb258c910 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Sun, 26 Jun 2011 01:53:38 +0400 Subject: [PATCH] test: Add movd.asm Signed-off-by: Cyrill Gorcunov --- test/movd.asm | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/movd.asm diff --git a/test/movd.asm b/test/movd.asm new file mode 100644 index 00000000..42df0af9 --- /dev/null +++ b/test/movd.asm @@ -0,0 +1,12 @@ +;Testname=optimized; Arguments=-Ox -fbin -omovd.bin; Files=stdout stderr movd.bin +[BITS 32] + movd mm0,eax + movd mm0,[eax] + movd [eax],mm0 + movd eax,mm0 + + movd xmm0,eax + movd xmm0,[eax] + + movd [eax],xmm0 + movd eax,xmm0