OSDN Git Service

fix build error with some flavours of gcc 2.95.3
[linux-kernel-docs/linux-2.4.36.git] / include / asm-i386 / processor.h
index 914c191..4ccfc5d 100644 (file)
@@ -495,7 +495,7 @@ struct extended_sigtable {
 /* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
 static inline void rep_nop(void)
 {
-       __asm__ __volatile__("rep;nop" ::: "memory");
+       __asm__ __volatile__("rep;nop": : :"memory");
 }
 
 #define cpu_relax()    rep_nop()