* vec.h (VEC_T_alloc): Fix MEM_STAT_DECL pasto.

From-SVN: r84349
This commit is contained in:
Nathan Sidwell 2004-07-09 08:33:22 +00:00 committed by Nathan Sidwell
parent 42032f7afd
commit 4dbb165641
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-07-09 Nathan Sidwell <nathan@codesourcery.com>
* vec.h (VEC_T_alloc): Fix MEM_STAT_DECL pasto.
2004-07-09 Eric Botcazou <ebotcazou@libertysurf.fr>
PR target/16416

View File

@ -317,8 +317,8 @@ static inline TDEF VEC_OP (TDEF,iterate) \
return vec_ && ix_ < vec_->num ? vec_->vec[ix_] : NULL; \
} \
\
static inline VEC (TDEF) *VEC_OP (TDEF,alloc MEM_STAT_DECL) \
(int alloc_) \
static inline VEC (TDEF) *VEC_OP (TDEF,alloc) \
(int alloc_ MEM_STAT_DECL) \
{ \
return vec_p_reserve (NULL, alloc_ - !alloc_ PASS_MEM_STAT); \
} \