aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPatrick Palka <ppalka@gcc.gnu.org>2015-06-13 16:29:47 +0000
committerPatrick Palka <ppalka@gcc.gnu.org>2015-06-13 16:29:47 +0000
commit34a6a4663aee484e70d6f6ca974481eb1f1075a4 (patch)
tree47f2f72314b59f9c1e59517e79ac045f4d777691 /gcc
parent6feffb3a65aa1031fd952bc00f41df9d92361d24 (diff)
downloadgcc-34a6a4663aee484e70d6f6ca974481eb1f1075a4.zip
gcc-34a6a4663aee484e70d6f6ca974481eb1f1075a4.tar.gz
gcc-34a6a4663aee484e70d6f6ca974481eb1f1075a4.tar.bz2
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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/tree.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 903cc3f..0f7eb1f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2015-06-13 Patrick Palka <ppalka@gcc.gnu.org>
+
+ * tree.c (make_vector_stat): Fix comment to state that the
+ function returns a VECTOR_CST.
+
2015-06-13 Richard Sandiford <richard.sandiford@arm.com>
* gensupport.h (add_implicit_parallel): Declare.
diff --git a/gcc/tree.c b/gcc/tree.c
index be01d0e..6c194a6 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)