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/sparc/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/sparc/gen/Makefile.inc')
-rw-r--r-- | lib/libc/arch/sparc/gen/Makefile.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/arch/sparc/gen/Makefile.inc b/lib/libc/arch/sparc/gen/Makefile.inc index d0fa7366173..95e1b4011ef 100644 --- a/lib/libc/arch/sparc/gen/Makefile.inc +++ b/lib/libc/arch/sparc/gen/Makefile.inc @@ -1,6 +1,7 @@ -# $OpenBSD: Makefile.inc,v 1.2 1996/08/19 08:17:24 tholo Exp $ +# $OpenBSD: Makefile.inc,v 1.3 2003/05/02 19:20:26 millert Exp $ SRCS+= _setjmp.S fabs.S frexp.c infinity.c isinf.c isnan.c ldexp.c modf.S SRCS+= flt_rounds.c fpgetmask.c fpgetround.c fpgetsticky.c fpsetmask.c \ fpsetround.c fpsetsticky.c SRCS+= fixunsdfsi.S mul.S umul.S saveregs.S setjmp.S sigsetjmp.S +SRCS+= alloca.c |