diff options
Diffstat (limited to 'sysdeps/alpha')
-rw-r--r-- | sysdeps/alpha/bb_init_func.S | 4 | ||||
-rw-r--r-- | sysdeps/alpha/copysign.c | 31 | ||||
-rw-r--r-- | sysdeps/alpha/divrem.h | 2 |
3 files changed, 3 insertions, 34 deletions
diff --git a/sysdeps/alpha/bb_init_func.S b/sysdeps/alpha/bb_init_func.S index dfa8c1d07b..49be0b2bfe 100644 --- a/sysdeps/alpha/bb_init_func.S +++ b/sysdeps/alpha/bb_init_func.S @@ -53,11 +53,11 @@ init: br pv, 1f 1: ldgp gp, 0(pv) - lda t1, __bb_head + ldiq t1, __bb_head lda t3, _gmonparam ldq t2, 0(t1) ldl t3, 0(t3) /* t3 = _gmonparam.state */ - ldi t0, 1 + lda t0, 1 stq t0, ZERO_WORD(a0) /* blocks->zero_word = 1 */ stq t2, NEXT(a0) /* blocks->next = __bb_head */ stq a0, 0(t1) diff --git a/sysdeps/alpha/copysign.c b/sysdeps/alpha/copysign.c deleted file mode 100644 index 69544b01fb..0000000000 --- a/sysdeps/alpha/copysign.c +++ /dev/null @@ -1,31 +0,0 @@ -/* Copyright (C) 1992, 1993, 1995 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 -modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. - -The GNU C Library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with the GNU C Library; see the file COPYING.LIB. If -not, write to the Free Software Foundation, Inc., 675 Mass Ave, -Cambridge, MA 02139, USA. */ - -#define __NO_MATH_INLINES - -#include <math.h> - -/* Return X with its sign changed to Y's. */ -__inline double -__copysign (double __x, double __y) -{ - __asm ("cpys %1, %2, %0" : "=f" (__x) : "f" (__y), "f" (__x)); - return __x; -} - -weak_alias (__copysign, copysign) diff --git a/sysdeps/alpha/divrem.h b/sysdeps/alpha/divrem.h index f296179e99..2951335c49 100644 --- a/sysdeps/alpha/divrem.h +++ b/sysdeps/alpha/divrem.h @@ -125,7 +125,7 @@ FUNC_NAME: ldq gp, 0x10(sp) lda sp, 0x18(sp) #endif - .frame sp, FRAME_SIZE, ra, 0 + .frame sp, FRAME_SIZE, retaddr, 0 lda sp,-FRAME_SIZE(sp) .prologue 1 stq arg1,0x00(sp) |