[xiph-commits] r15352 - trunk/theora/lib

xiphmont at svn.xiph.org xiphmont at svn.xiph.org
Mon Sep 29 20:38:45 PDT 2008


Author: xiphmont
Date: 2008-09-29 20:38:45 -0700 (Mon, 29 Sep 2008)
New Revision: 15352

Modified:
   trunk/theora/lib/cpu.c
Log:
Commit submitted patch for cpuid assembly fix for MSVC.



Modified: trunk/theora/lib/cpu.c
===================================================================
--- trunk/theora/lib/cpu.c	2008-09-29 11:02:35 UTC (rev 15351)
+++ trunk/theora/lib/cpu.c	2008-09-30 03:38:45 UTC (rev 15352)
@@ -89,8 +89,10 @@
     pushfd
     pop eax
     popfd
-    mov [_eax],eax
-    mov [_ebx],ebx
+    mov ecx,_eax
+    mov [ecx],eax
+    mov ecx,_ebx
+    mov [ecx],ebx
   }
 }
 # endif



More information about the commits mailing list