aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/powerpc/fpu/bits/fenvinline.h8
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/sysdep.h16
2 files changed, 12 insertions, 12 deletions
diff --git a/sysdeps/powerpc/fpu/bits/fenvinline.h b/sysdeps/powerpc/fpu/bits/fenvinline.h
index 6ab3105a3b..f13cd70cc1 100644
--- a/sysdeps/powerpc/fpu/bits/fenvinline.h
+++ b/sysdeps/powerpc/fpu/bits/fenvinline.h
@@ -39,8 +39,8 @@
? (__extension__ ({ __asm__ __volatile__ \
("mtfsb1 %s0" \
: : "i#*X"(__builtin_ffs (__excepts))); \
- (void)0; })) \
- : (void)0) \
+ 0; })) \
+ : 0) \
: (feraiseexcept) (__excepts))
/* Inline definition for feclearexcept. */
@@ -52,8 +52,8 @@
? (__extension__ ({ __asm__ __volatile__ \
("mtfsb0 %s0" \
: : "i#*X"(__builtin_ffs (__excepts))); \
- (void)0; })) \
- : (void)0) \
+ 0; })) \
+ : 0) \
: (feclearexcept) (__excepts))
#endif /* __GNUC__ && !_SOFT_FLOAT */
diff --git a/sysdeps/unix/sysv/linux/powerpc/sysdep.h b/sysdeps/unix/sysv/linux/powerpc/sysdep.h
index 3bbedc3743..fbe3a4820c 100644
--- a/sysdeps/unix/sysv/linux/powerpc/sysdep.h
+++ b/sysdeps/unix/sysv/linux/powerpc/sysdep.h
@@ -49,11 +49,11 @@
.align ALIGNARG(2); \
0:.long 0; \
.previous; \
- mflr %r0; \
- stw %r0,4(%r1); \
+ mflr r0; \
+ stw r0,4(r1); \
bl _GLOBAL_OFFSET_TABLE_@local-4; \
- mflr %r11; \
- lwz %r0,0b@got(%r11); \
+ mflr r11; \
+ lwz r0,0b@got(r11); \
bl JUMPTARGET(_mcount);
#else /* PIC */
#define CALL_MCOUNT \
@@ -61,10 +61,10 @@
.align ALIGNARG(2); \
0:.long 0; \
.previous; \
- mflr %r0; \
- lis %r11,0b@ha; \
- stw %r0,4(%r1); \
- addi %r0,%r11,0b@l; \
+ mflr r0; \
+ lis r11,0b@ha; \
+ stw r0,4(r1); \
+ addi r0,r11,0b@l; \
bl JUMPTARGET(_mcount);
#endif /* PIC */
#else /* PROF */