merge from gcc
This commit is contained in:
parent
52d91f5694
commit
9775e5a156
|
@ -1,3 +1,7 @@
|
||||||
|
2002-01-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||||
|
|
||||||
|
* libiberty.h (C_alloca): Add ATTRIBUTE_MALLOC.
|
||||||
|
|
||||||
2002-01-27 David O'Brien <obrien@FreeBSD.org>
|
2002-01-27 David O'Brien <obrien@FreeBSD.org>
|
||||||
|
|
||||||
* cgen.h (BFD_VERSION): Use BFD_VERSION_DATE instead.
|
* cgen.h (BFD_VERSION): Use BFD_VERSION_DATE instead.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* Function declarations for libiberty.
|
/* Function declarations for libiberty.
|
||||||
|
|
||||||
Copyright 2001 Free Software Foundation, Inc.
|
Copyright 2001, 2002 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Note - certain prototypes declared in this header file are for
|
Note - certain prototypes declared in this header file are for
|
||||||
functions whoes implementation copyright does not belong to the
|
functions whoes implementation copyright does not belong to the
|
||||||
|
@ -283,7 +283,7 @@ extern int vasprintf PARAMS ((char **, const char *, va_list))
|
||||||
USE_C_ALLOCA yourself. The canonical autoconf macro C_ALLOCA is
|
USE_C_ALLOCA yourself. The canonical autoconf macro C_ALLOCA is
|
||||||
also set/unset as it is often used to indicate whether code needs
|
also set/unset as it is often used to indicate whether code needs
|
||||||
to call alloca(0). */
|
to call alloca(0). */
|
||||||
extern PTR C_alloca PARAMS((size_t));
|
extern PTR C_alloca PARAMS ((size_t)) ATTRIBUTE_MALLOC;
|
||||||
#undef alloca
|
#undef alloca
|
||||||
#if GCC_VERSION >= 2000 && !defined USE_C_ALLOCA
|
#if GCC_VERSION >= 2000 && !defined USE_C_ALLOCA
|
||||||
# define alloca(x) __builtin_alloca(x)
|
# define alloca(x) __builtin_alloca(x)
|
||||||
|
|
Loading…
Reference in New Issue