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/rtems/score/mips.h | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'cpukit/score/cpu/mips/rtems') diff --git a/cpukit/score/cpu/mips/rtems/score/mips.h b/cpukit/score/cpu/mips/rtems/score/mips.h index 1cffa3a15f..8c4f3ae0f4 100644 --- a/cpukit/score/cpu/mips/rtems/score/mips.h +++ b/cpukit/score/cpu/mips/rtems/score/mips.h @@ -116,13 +116,13 @@ extern "C" { #define mips_get_sr( _x ) \ do { \ - asm volatile( "mfc0 %0, $12; nop" : "=r" (_x) : ); \ + __asm__ volatile( "mfc0 %0, $12; nop" : "=r" (_x) : ); \ } while (0) #define mips_set_sr( _x ) \ do { \ register unsigned int __x = (_x); \ - asm volatile( "mtc0 %0, $12; nop" : : "r" (__x) ); \ + __asm__ volatile( "mtc0 %0, $12; nop" : : "r" (__x) ); \ } while (0) @@ -132,14 +132,14 @@ extern "C" { #define mips_get_cause( _x ) \ do { \ - asm volatile( "mfc0 %0, $13; nop" : "=r" (_x) : ); \ + __asm__ volatile( "mfc0 %0, $13; nop" : "=r" (_x) : ); \ } while (0) #define mips_set_cause( _x ) \ do { \ register unsigned int __x = (_x); \ - asm volatile( "mtc0 %0, $13; nop" : : "r" (__x) ); \ + __asm__ volatile( "mtc0 %0, $13; nop" : : "r" (__x) ); \ } while (0) @@ -151,14 +151,14 @@ extern "C" { #define mips_get_dcic( _x ) \ do { \ - asm volatile( "mfc0 %0, $7; nop" : "=r" (_x) : ); \ + __asm__ volatile( "mfc0 %0, $7; nop" : "=r" (_x) : ); \ } while (0) #define mips_set_dcic( _x ) \ do { \ register unsigned int __x = (_x); \ - asm volatile( "mtc0 %0, $7; nop" : : "r" (__x) ); \ + __asm__ volatile( "mtc0 %0, $7; nop" : : "r" (__x) ); \ } while (0) @@ -171,8 +171,8 @@ extern "C" { #define mips_get_bpcrm( _x, _y ) \ do { \ - asm volatile( "mfc0 %0, $3; nop" : "=r" (_x) : ); \ - asm volatile( "mfc0 %0, $11; nop" : "=r" (_y) : ); \ + __asm__ volatile( "mfc0 %0, $3; nop" : "=r" (_x) : ); \ + __asm__ volatile( "mfc0 %0, $11; nop" : "=r" (_y) : ); \ } while (0) @@ -180,8 +180,8 @@ extern "C" { do { \ register unsigned int __x = (_x); \ register unsigned int __y = (_y); \ - asm volatile( "mtc0 %0, $11; nop" : : "r" (__y) ); \ - asm volatile( "mtc0 %0, $3; nop" : : "r" (__x) ); \ + __asm__ volatile( "mtc0 %0, $11; nop" : : "r" (__y) ); \ + __asm__ volatile( "mtc0 %0, $3; nop" : : "r" (__x) ); \ } while (0) @@ -196,8 +196,8 @@ extern "C" { #define mips_get_bdarm( _x, _y ) \ do { \ - asm volatile( "mfc0 %0, $5; nop" : "=r" (_x) : ); \ - asm volatile( "mfc0 %0, $9; nop" : "=r" (_y) : ); \ + __asm__ volatile( "mfc0 %0, $5; nop" : "=r" (_x) : ); \ + __asm__ volatile( "mfc0 %0, $9; nop" : "=r" (_y) : ); \ } while (0) @@ -205,8 +205,8 @@ extern "C" { do { \ register unsigned int __x = (_x); \ register unsigned int __y = (_y); \ - asm volatile( "mtc0 %0, $9; nop" : : "r" (__y) ); \ - asm volatile( "mtc0 %0, $5; nop" : : "r" (__x) ); \ + __asm__ volatile( "mtc0 %0, $9; nop" : : "r" (__y) ); \ + __asm__ volatile( "mtc0 %0, $5; nop" : : "r" (__x) ); \ } while (0) @@ -223,14 +223,14 @@ extern "C" { #define mips_get_fcr31( _x ) \ do { \ - asm volatile( "cfc1 %0, $31; nop" : "=r" (_x) : ); \ + __asm__ volatile( "cfc1 %0, $31; nop" : "=r" (_x) : ); \ } while(0) #define mips_set_fcr31( _x ) \ do { \ register unsigned int __x = (_x); \ - asm volatile( "ctc1 %0, $31; nop" : : "r" (__x) ); \ + __asm__ volatile( "ctc1 %0, $31; nop" : : "r" (__x) ); \ } while(0) #else -- cgit v1.2.3