From: ppalka Date: Sat, 13 Jun 2015 16:29:47 +0000 (+0000) Subject: Fix comment documenting make_vector_stat X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f5a4f40025132466ba34173440c9db98b666238;p=thirdparty%2Fgcc.git Fix comment documenting make_vector_stat * tree.c (make_vector_stat): Fix comment to state that the function returns a VECTOR_CST. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@224457 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 903cc3f9efe9..0f7eb1f631ee 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 be01d0e19c96..6c194a6953dc 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)