diff dsputil.h @ 6391:3dc36ec2dcad libavcodec

__asm __volatile -> asm volatile, improves code consistency and works (as far as that is possible) with the Sun C compiler.
author reimar
date Sun, 24 Feb 2008 14:46:22 +0000
parents 0a403ade8c81
children 5154ab444372
line wrap: on
line diff
--- a/dsputil.h	Sun Feb 24 07:47:02 2008 +0000
+++ b/dsputil.h	Sun Feb 24 14:46:22 2008 +0000
@@ -520,7 +520,7 @@
 
 static inline void emms(void)
 {
-    __asm __volatile ("emms;":::"memory");
+    asm volatile ("emms;":::"memory");
 }