Commit 4dbb1656 by Nathan Sidwell Committed by Nathan Sidwell

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

From-SVN: r84349
parent 42032f7a
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> 2004-07-09 Eric Botcazou <ebotcazou@libertysurf.fr>
PR target/16416 PR target/16416
......
...@@ -317,8 +317,8 @@ static inline TDEF VEC_OP (TDEF,iterate) \ ...@@ -317,8 +317,8 @@ static inline TDEF VEC_OP (TDEF,iterate) \
return vec_ && ix_ < vec_->num ? vec_->vec[ix_] : NULL; \ return vec_ && ix_ < vec_->num ? vec_->vec[ix_] : NULL; \
} \ } \
\ \
static inline VEC (TDEF) *VEC_OP (TDEF,alloc MEM_STAT_DECL) \ static inline VEC (TDEF) *VEC_OP (TDEF,alloc) \
(int alloc_) \ (int alloc_ MEM_STAT_DECL) \
{ \ { \
return vec_p_reserve (NULL, alloc_ - !alloc_ PASS_MEM_STAT); \ return vec_p_reserve (NULL, alloc_ - !alloc_ PASS_MEM_STAT); \
} \ } \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment