]> sourceware.org Git - glibc.git/commitdiff
* sysdeps/unix/sysv/linux/alpha/clone.S: Use HIDDEN_JUMPTARGET. ...
authorRichard Henderson <rth@redhat.com>
Tue, 24 Jun 2003 16:38:45 +0000 (16:38 +0000)
committerRichard Henderson <rth@redhat.com>
Tue, 24 Jun 2003 16:38:45 +0000 (16:38 +0000)
* sysdeps/unix/sysv/linux/alpha/clone.S: Use HIDDEN_JUMPTARGET.
* sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S: Use
libc_hidden_def.
* sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S: Likewise.
* sysdeps/unix/sysv/linux/alpha/setfpucw.c: Use libc_hidden_proto
on them.

ChangeLog
sysdeps/unix/sysv/linux/alpha/clone.S
sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S
sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S
sysdeps/unix/sysv/linux/alpha/setfpucw.c

index e891c2c995dc6b42c3be14b4c655f8297d213591..7ec9129415bd4eadb90904f21b69ed77bc20a9b6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,13 @@
        * sysdeps/alpha/fpu/bits/mathinline.h: Honor
        __LIBC_INTERNAL_MATH_INLINES.  Implement __signbitf, __signbit.
 
+       * sysdeps/unix/sysv/linux/alpha/clone.S: Use HIDDEN_JUMPTARGET.
+       * sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S: Use
+       libc_hidden_def.
+       * sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S: Likewise.
+       * sysdeps/unix/sysv/linux/alpha/setfpucw.c: Use libc_hidden_proto
+       on them.
+
 2003-06-24  Andreas Schwab  <schwab@suse.de>
 
        * sysdeps/m68k/fpu/libm-test-ulps: Update.
index 2aa9bb7f38b43ca822ecde544c9f65de0a84c981..a0aa7712f526aa01b3e795fe71551e690f908e56 100644 (file)
@@ -97,7 +97,11 @@ thread_start:
 
        /* Call _exit rather than doing it inline for breakpoint purposes.  */
        mov     v0,a0
-       jsr     ra,_exit
+#ifdef PIC
+       bsr     ra, HIDDEN_JUMPTARGET(_exit)    !samegp
+#else
+       jsr     ra, HIDDEN_JUMPTARGET(_exit)
+#endif
 
        /* Die horribly.  */
        halt
index f436a524371f70ff03af14d7441d27b7ca5c7370..3cabd0b489c3dce184dca2758c5e49057ff3df72 100644 (file)
@@ -57,4 +57,5 @@ $error:
 
        END(__ieee_get_fp_control)
 
+libc_hidden_def(__ieee_get_fp_control)
 weak_alias (__ieee_get_fp_control, ieee_get_fp_control)
index 54762e1d2355987188cbdebff436c0cbeb959359..302ed06cd33c492ef22a9a662f1a00c8f70d3505 100644 (file)
@@ -56,4 +56,5 @@ $error:
 
        END(__ieee_set_fp_control)
 
+libc_hidden_def(__ieee_set_fp_control)
 weak_alias (__ieee_set_fp_control, ieee_set_fp_control)
index 5622d8425c144c2d8b22326f45521c24dfd38c33..a7e3a558120ab7c6e7078622924030bf8dd5710e 100644 (file)
@@ -1,5 +1,5 @@
 /* Set FP exception mask and rounding mode.
-   Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+   Copyright (C) 1996, 1997, 1998, 2003 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
 #include <fpu_control.h>
 #include <asm/fpu.h>
 
-
 extern void            __ieee_set_fp_control (unsigned long);
+libc_hidden_proto(__ieee_set_fp_control)
+
 extern unsigned long   __ieee_get_fp_control (void);
+libc_hidden_proto(__ieee_get_fp_control)
 
 static inline unsigned long
 rdfpcr (void)
This page took 0.060284 seconds and 5 git commands to generate.