diff liba52/imdct_3dnow.h @ 27754:08d18fe9da52

Change all occurrences of asm and __asm to __asm__, same as was done for FFmpeg. Neither variant is valid C99 syntax, but __asm__ is the most portable variant.
author diego
date Thu, 16 Oct 2008 18:59:27 +0000
parents 8855a2568281
children b5a46071062a
line wrap: on
line diff
--- a/liba52/imdct_3dnow.h	Thu Oct 16 18:28:38 2008 +0000
+++ b/liba52/imdct_3dnow.h	Thu Oct 16 18:59:27 2008 +0000
@@ -431,7 +431,7 @@
 */
 
     FFT_128P_3DNOW (&buf[0]);
-//    asm volatile ("femms \n\t":::"memory");
+//    __asm__ volatile ("femms \n\t":::"memory");
     
     /* Post IFFT complex multiply  plus IFFT complex conjugate*/
 #if 1  
@@ -489,7 +489,7 @@
 
     /* Window and convert to real valued signal */
 #if 1
-	asm volatile (
+	__asm__ volatile (
 		"movd (%0), %%mm3	\n\t"
 		"punpckldq %%mm3, %%mm3	\n\t"
 	:: "r" (&bias)