* sysdeps/powerpc/Makefile (sysdep_routines): Don't build the fpr
authorGeoff Keating <geoffk@cygnus.com>
Thu, 6 Dec 2001 23:41:33 +0000 (23:41 +0000)
committerGeoff Keating <geoffk@cygnus.com>
Thu, 6 Dec 2001 23:41:33 +0000 (23:41 +0000)
save/restore functions here.
(libm-support): Don't define these functions here.
* sysdeps/powerpc/fpu/Makefile: Build the fpr save/restore
functions here.
* sysdeps/powerpc/fe_nomask.c: Move to...
* sysdeps/powerpc/fpu/fe_nomask.c: ... here.
* sysdeps/powerpc/fprrest.S: Move to...
* sysdeps/powerpc/fpu/fprrest.S: ... here.
* sysdeps/powerpc/fprsave.S: Move to...
* sysdeps/powerpc/fpu/fprsave.S: ... here.
2001-12-06  Geoff Keating  <geoffk@redhat.com>

* sysdeps/powerpc/Makefile (sysdep_routines): Don't build the fpr
save/restore functions here.
(libm-support): Don't define these functions here.
* sysdeps/powerpc/fpu/Makefile: Build the fpr save/restore
functions here.
* sysdeps/powerpc/fe_nomask.c: Move to...
* sysdeps/powerpc/fpu/fe_nomask.c: ... here.
* sysdeps/powerpc/fprrest.S: Move to...
* sysdeps/powerpc/fpu/fprrest.S: ... here.
* sysdeps/powerpc/fprsave.S: Move to...
* sysdeps/powerpc/fpu/fprsave.S: ... here.

ChangeLog
sysdeps/powerpc/Makefile
sysdeps/powerpc/fpu/Makefile
sysdeps/powerpc/fpu/fe_nomask.c [moved from sysdeps/powerpc/fe_nomask.c with 100% similarity]
sysdeps/powerpc/fpu/fprrest.S [moved from sysdeps/powerpc/fprrest.S with 100% similarity]
sysdeps/powerpc/fpu/fprsave.S [moved from sysdeps/powerpc/fprsave.S with 100% similarity]

index d15a8cb..e6ae9e4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2001-12-06  Geoff Keating  <geoffk@redhat.com>
+
+       * sysdeps/powerpc/Makefile (sysdep_routines): Don't build the fpr
+       save/restore functions here.
+       (libm-support): Don't define these functions here.
+       * sysdeps/powerpc/fpu/Makefile: Build the fpr save/restore
+       functions here.
+       * sysdeps/powerpc/fe_nomask.c: Move to...
+       * sysdeps/powerpc/fpu/fe_nomask.c: ... here.
+       * sysdeps/powerpc/fprrest.S: Move to...
+       * sysdeps/powerpc/fpu/fprrest.S: ... here.
+       * sysdeps/powerpc/fprsave.S: Move to...
+       * sysdeps/powerpc/fpu/fprsave.S: ... here.
+
 2001-12-06  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/unix/sysv/linux/opensock.c: New file.
index e5b026d..ac121ee 100644 (file)
@@ -6,10 +6,6 @@ asm-CPPFLAGS += -Wa,-mppc
 ifeq ($(with-fp),no)
 +cflags += -msoft-float
 sysdep-LDFLAGS += -msoft-float
-else
-ifeq ($(subdir),math)
-libm-support += fenv_const fe_nomask
-endif
 endif
 
 ifeq ($(subdir),gmon)
@@ -17,7 +13,7 @@ sysdep_routines += ppc-mcount
 endif
 
 ifeq ($(subdir),misc)
-sysdep_routines += gprsave0 gprrest0 gprsave1 gprrest1 fprsave fprrest
+sysdep_routines += gprsave0 gprrest0 gprsave1 gprrest1
 endif
 
 # On PPC, -fpic works until the GOT contains 2^15 bytes, and possibly
index bf2ed92..391cf3c 100644 (file)
@@ -1,3 +1,6 @@
 ifeq ($(subdir),math)
 libm-support += fenv_const fe_nomask t_sqrt
 endif
+ifeq ($(subdir),misc)
+sysdep_routines += fprsave fprrest
+endif