diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-05-02 19:20:27 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-05-02 19:20:27 +0000 |
commit | 805ef5a0e29b1440bef7df44bd19e613762170c6 (patch) | |
tree | b6d5a0ba027ef2dcb0c640c3c50afe0b502216bf /lib/libc/arch/alpha/gen/Makefile.inc | |
parent | 81138b1756e772c36615fbbdc27a8c0ea1a19c3f (diff) |
Add Doug Gwyn's portable alloca() for platforms w/o an assembler
version. Normally, gcc provides its own alloca() (unless -fno-builtin
is specified). The C version is decidedly suboptimal--we really
need proper assembler versions but this will work as a stop-gap
measure.
Diffstat (limited to 'lib/libc/arch/alpha/gen/Makefile.inc')
-rw-r--r-- | lib/libc/arch/alpha/gen/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/arch/alpha/gen/Makefile.inc b/lib/libc/arch/alpha/gen/Makefile.inc index b9df181ef49..67af127a822 100644 --- a/lib/libc/arch/alpha/gen/Makefile.inc +++ b/lib/libc/arch/alpha/gen/Makefile.inc @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile.inc,v 1.4 2001/09/10 22:38:11 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.5 2003/05/02 19:20:26 millert Exp $ # $NetBSD: Makefile.inc,v 1.3 1995/04/29 05:09:14 cgd Exp $ -SRCS+= _setjmp.S fabs.S frexp.c infinity.c isinf.c isnan.c ldexp.c modf.c \ - setjmp.S +SRCS+= _setjmp.S alloca.c fabs.S frexp.c infinity.c isinf.c isnan.c ldexp.c \ + modf.c setjmp.S SRCS+= flt_rounds.c fpgetmask.c fpgetround.c fpgetsticky.c fpsetmask.c \ fpsetround.c fpsetsticky.c SRCS+= sigsetjmp.S |