diff vidix/sysdep/AsmMacros_powerpc.h @ 27757:b5a46071062a

Replace all occurrences of '__volatile__' and '__volatile' by plain 'volatile'. We were using an inconsistent mix of the three variants and 'volatile' should be the most correct and portable variant.
author diego
date Thu, 16 Oct 2008 20:17:56 +0000
parents 502f04b67653
children eda346733b8c
line wrap: on
line diff
--- a/vidix/sysdep/AsmMacros_powerpc.h	Thu Oct 16 19:24:21 2008 +0000
+++ b/vidix/sysdep/AsmMacros_powerpc.h	Thu Oct 16 20:17:56 2008 +0000
@@ -68,7 +68,7 @@
 
 static __inline__ volatile void eieio()
 {
-	__asm__ __volatile__ ("eieio");
+	__asm__ volatile ("eieio");
 }
 
 static __inline__ void outb(short port, unsigned char value)