diff liba52/test.c @ 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 f20a11161e62
children eda346733b8c
line wrap: on
line diff
--- a/liba52/test.c	Thu Oct 16 18:28:38 2008 +0000
+++ b/liba52/test.c	Thu Oct 16 18:59:27 2008 +0000
@@ -46,7 +46,7 @@
 static inline long long rdtsc()
 {
 	long long l;
-	asm volatile(	"rdtsc\n\t"
+	__asm__ volatile("rdtsc\n\t"
 		: "=A" (l)
 	);
 //	printf("%d\n", int(l/1000));