diff options
author | Steve Ellcey <sje@cup.hp.com> | 2006-01-21 17:57:01 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2006-01-21 17:57:01 +0000 |
commit | a55b8e1826cd3c5e399fdcb4802f1603e49f8ba9 (patch) | |
tree | 16ba62c14bd05fa0e4fd37e596e2a99d95e7f40b /libgomp/ChangeLog | |
parent | 30cb87a09beeca0cbdee7347c2d993d1b90446d2 (diff) | |
download | gcc-a55b8e1826cd3c5e399fdcb4802f1603e49f8ba9.zip gcc-a55b8e1826cd3c5e399fdcb4802f1603e49f8ba9.tar.gz gcc-a55b8e1826cd3c5e399fdcb4802f1603e49f8ba9.tar.bz2 |
re PR libgomp/25877 (team.c:269: warning: implicit declaration of function 'alloca')
PR libgomp/25877
* configure.ac: Remove check for alloca.h.
* configure: Regenerate.
* config.h.in: Regenerate.
* libgomp.h: define gomp_alloca to be __builtin_alloca.
* team.c: Remove use of alloca.h.
Call gomp_alloca instead of alloca.
From-SVN: r110068
Diffstat (limited to 'libgomp/ChangeLog')
-rw-r--r-- | libgomp/ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 0b151aa..e33066a 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,13 @@ +2006-01-21 Steve Ellcey <sje@cup.hp.com> + + PR libgomp/25877 + * configure.ac: Remove check for alloca.h. + * configure: Regenerate. + * config.h.in: Regenerate. + * libgomp.h: define gomp_alloca to be __builtin_alloca. + * team.c: Remove use of alloca.h. + Call gomp_alloca instead of alloca. + 2006-01-20 Steve Ellcey <sje@cup.hp.com> PR libgomp/25877 |