about summary refs log tree commit diff
path: root/sysdeps/unix/sysv
diff options
context:
space:
mode:
authorGeoff Keating <geoffk@cygnus.com>1999-12-30 23:37:12 +0000
committerGeoff Keating <geoffk@cygnus.com>1999-12-30 23:37:12 +0000
commit4efb5faf8c15ba85539bf1fbd9e05154ab65b4c4 (patch)
tree33b516a2d5b46a632d906aadc63b93234975e34c /sysdeps/unix/sysv
parent17440fd3783e50592cadefef5cfb8d1a2ce8a035 (diff)
downloadglibc-4efb5faf8c15ba85539bf1fbd9e05154ab65b4c4.tar.gz
glibc-4efb5faf8c15ba85539bf1fbd9e05154ab65b4c4.tar.xz
glibc-4efb5faf8c15ba85539bf1fbd9e05154ab65b4c4.zip
* sysdeps/powerpc/fpu/bits/fenvinline.h (feraiseexcept): Remove
the (void) casts as now feraiseexcept returns a value. 
(feclearexcept): Likewise.
	* sysdeps/unix/sysv/linux/powerpc/sysdep.h: Don't use '%r0',
	it interferes with the macros for AIX.
1999-12-30  Geoff Keating  <geoffk@cygnus.com>

	* sysdeps/powerpc/fpu/bits/fenvinline.h (feraiseexcept): Remove
	the (void) casts as now feraiseexcept returns a value.
	(feclearexcept): Likewise.

	* sysdeps/unix/sysv/linux/powerpc/sysdep.h: Don't use '%r0',
	it interferes with the macros for AIX.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/sysdep.h16
1 files changed, 8 insertions, 8 deletions
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 */