From f8958d9c7dbf1c6c24e030bde097b68fee27eee1 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 11 Feb 2011 08:54:08 +0000 Subject: =?UTF-8?q?2011-02-11=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * cpu.c, rtems/score/mips.h: Use "__asm__" instead of "asm" for improved c99-compliance. --- cpukit/score/cpu/mips/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/score/cpu/mips/cpu.c') diff --git a/cpukit/score/cpu/mips/cpu.c b/cpukit/score/cpu/mips/cpu.c index 773f5f1334..e547e4d684 100644 --- a/cpukit/score/cpu/mips/cpu.c +++ b/cpukit/score/cpu/mips/cpu.c @@ -315,7 +315,7 @@ void *_CPU_Thread_Idle_body( uintptr_t ignored ) { #if (__mips == 3) || (__mips == 32) for( ; ; ) - asm volatile("wait"); /* use wait to enter low power mode */ + __asm__ volatile("wait"); /* use wait to enter low power mode */ #elif __mips == 1 for( ; ; ) ; -- cgit v1.2.3