From 9124d26afb947e204657918dd27f2e4c0c5c5af2 Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Mon, 19 Sep 2011 21:57:15 +0000 Subject: [PATCH] Fix latest commit for x86 msvc --- code/asm/snapvector.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/asm/snapvector.asm b/code/asm/snapvector.asm index a953778a..000777b4 100644 --- a/code/asm/snapvector.asm +++ b/code/asm/snapvector.asm @@ -70,7 +70,7 @@ ELSE stmxcsr [esp] ; save SSE control word ldmxcsr ssecw ; set to round nearest - mov eax, dword ptr 16[esp] ; store address of vector in eax + mov eax, dword ptr 12[esp] ; store address of vector in eax movaps xmm1, ssemask ; initialize the mask register for maskmovdqu movups xmm0, [eax] ; here is stored our vector. Read 4 values in one go movaps xmm2, xmm0 ; keep a copy of the original data