Commit 809c1bd7 by Kazu Hirata Committed by Kazu Hirata

* vec.h (VEC_safe_grow): Replace grow with safe_grow.

From-SVN: r98643
parent 7d217b23
2005-04-24 Kazu Hirata <kazu@cs.umass.edu>
* vec.h (VEC_safe_grow): Replace grow with safe_grow.
2005-04-23 Kazu Hirata <kazu@cs.umass.edu> 2005-04-23 Kazu Hirata <kazu@cs.umass.edu>
* ipa-inline.c, tree-ssa-operands.h: Fix comment typos. * ipa-inline.c, tree-ssa-operands.h: Fix comment typos.
......
...@@ -276,7 +276,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA ...@@ -276,7 +276,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
uninitialized. */ uninitialized. */
#define VEC_safe_grow(T,A,V,I) \ #define VEC_safe_grow(T,A,V,I) \
(VEC_OP(T,A,grow)(&(V),I VEC_CHECK_INFO)) (VEC_OP(T,A,safe_grow)(&(V),I VEC_CHECK_INFO))
/* Replace element /* Replace element
T VEC_T_replace (VEC(T) *v, unsigned ix, T val); // Pointer T VEC_T_replace (VEC(T) *v, unsigned ix, T val); // Pointer
......
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