From: Patrick Palka Date: Sat, 13 Jun 2015 16:29:47 +0000 (+0000) Subject: Fix comment documenting make_vector_stat X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=34a6a4663aee484e70d6f6ca974481eb1f1075a4;p=gcc.git Fix comment documenting make_vector_stat * tree.c (make_vector_stat): Fix comment to state that the function returns a VECTOR_CST. From-SVN: r224457 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 903cc3f9efe..0f7eb1f631e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-06-13 Patrick Palka + + * tree.c (make_vector_stat): Fix comment to state that the + function returns a VECTOR_CST. + 2015-06-13 Richard Sandiford * gensupport.h (add_implicit_parallel): Declare. diff --git a/gcc/tree.c b/gcc/tree.c index be01d0e19c9..6c194a6953d 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -1652,7 +1652,7 @@ cst_and_fits_in_hwi (const_tree x) return TREE_INT_CST_NUNITS (x) == 1; } -/* Build a newly constructed TREE_VEC node of length LEN. */ +/* Build a newly constructed VECTOR_CST node of length LEN. */ tree make_vector_stat (unsigned len MEM_STAT_DECL)