diff options
Diffstat (limited to 'libc/sysdeps/linux/sparc')
| -rw-r--r-- | libc/sysdeps/linux/sparc/bits/mathinline.h | 8 | ||||
| -rw-r--r-- | libc/sysdeps/linux/sparc/brk.c | 2 | 
2 files changed, 5 insertions, 5 deletions
| diff --git a/libc/sysdeps/linux/sparc/bits/mathinline.h b/libc/sysdeps/linux/sparc/bits/mathinline.h index 9dd784d12..729145e14 100644 --- a/libc/sysdeps/linux/sparc/bits/mathinline.h +++ b/libc/sysdeps/linux/sparc/bits/mathinline.h @@ -198,7 +198,7 @@ __MATH_INLINE double  __NTH (sqrt (double __x))  {    register double __r; -  __asm ("fsqrtd %1,%0" : "=f" (__r) : "f" (__x)); +  __asm__ ("fsqrtd %1,%0" : "=f" (__r) : "f" (__x));    return __r;  } @@ -206,7 +206,7 @@ __MATH_INLINE float  __NTH (sqrtf (float __x))  {    register float __r; -  __asm ("fsqrts %1,%0" : "=f" (__r) : "f" (__x)); +  __asm__ ("fsqrts %1,%0" : "=f" (__r) : "f" (__x));    return __r;  } @@ -236,7 +236,7 @@ __MATH_INLINE double  __ieee754_sqrt (double __x)  {    register double __r; -  __asm ("fsqrtd %1,%0" : "=f" (__r) : "f" (__x)); +  __asm__ ("fsqrtd %1,%0" : "=f" (__r) : "f" (__x));    return __r;  } @@ -244,7 +244,7 @@ __MATH_INLINE float  __ieee754_sqrtf (float __x)  {    register float __r; -  __asm ("fsqrts %1,%0" : "=f" (__r) : "f" (__x)); +  __asm__ ("fsqrts %1,%0" : "=f" (__r) : "f" (__x));    return __r;  } diff --git a/libc/sysdeps/linux/sparc/brk.c b/libc/sysdeps/linux/sparc/brk.c index 7791f55e5..53f2c9c1d 100644 --- a/libc/sysdeps/linux/sparc/brk.c +++ b/libc/sysdeps/linux/sparc/brk.c @@ -33,7 +33,7 @@ int brk (void *addr)      {  	register void *o0 __asm__("%o0") = addr;  	register int g1 __asm__("%g1") = 17 ; -	__asm ("t 0x10" : "=r"(o0) : "r"(g1), "0"(o0) : "cc"); +	__asm__ ("t 0x10" : "=r"(o0) : "r"(g1), "0"(o0) : "cc");  	newbrk = o0;      } | 
