diff options
author | Patrick Palka <ppalka@gcc.gnu.org> | 2015-06-13 16:29:47 +0000 |
---|---|---|
committer | Patrick Palka <ppalka@gcc.gnu.org> | 2015-06-13 16:29:47 +0000 |
commit | 34a6a4663aee484e70d6f6ca974481eb1f1075a4 (patch) | |
tree | 47f2f72314b59f9c1e59517e79ac045f4d777691 /gcc/tree.c | |
parent | 6feffb3a65aa1031fd952bc00f41df9d92361d24 (diff) | |
download | gcc-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/tree.c')
-rw-r--r-- | gcc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |