aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorUros Bizjak <ubizjak@gmail.com>2019-04-25 21:45:26 +0200
committerUros Bizjak <uros@gcc.gnu.org>2019-04-25 21:45:26 +0200
commit8a55f9c57a1ffd900262aa2fc2015822dc059331 (patch)
treee03a4f6b8849f4a38a4b5ed1c4c9058ce9343fc4 /gcc
parent68ec60c4a377b532ec2d265ea542107c36b1d15c (diff)
downloadgcc-8a55f9c57a1ffd900262aa2fc2015822dc059331.zip
gcc-8a55f9c57a1ffd900262aa2fc2015822dc059331.tar.gz
gcc-8a55f9c57a1ffd900262aa2fc2015822dc059331.tar.bz2
extend.texi (vector_size): Add missing comma after @xref.
* doc/extend.texi (vector_size): Add missing comma after @xref. From-SVN: r270585
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/doc/extend.texi4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index fcdbfe4..7cd02c8 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2019-04-25 Uroš Bizjak <ubizjak@gmail.com>
+
+ * doc/extend.texi (vector_size): Add missing comma after @xref.
+
2019-04-25 Jakub Jelinek <jakub@redhat.com>
* BASE-VER: Set to 10.0.0.
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 91679e8..e8563fd 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -7094,7 +7094,7 @@ causes the compiler to set the mode for @code{foo}, to be 16 bytes,
divided into @code{int} sized units. Assuming a 32-bit @code{int},
@code{foo}'s type is a vector of four units of four bytes each, and
the corresponding mode of @code{foo} is @code{V4SI}.
-@xref{Vector Extensions} for details of manipulating vector variables.
+@xref{Vector Extensions}, for details of manipulating vector variables.
This attribute is only applicable to integral and floating scalars,
although arrays, pointers, and function return values are allowed in
@@ -8178,7 +8178,7 @@ sized units. With @code{int} having a size of 4 bytes, the type defines
a vector of eight units, four bytes each. The mode of variables of type
@code{int_vec32_t} is @code{V8SI}. @code{int_vec32_ptr_t} is then defined
to be a pointer to such a vector type, and @code{int_vec32_arr3_t} to be
-an array of three such vectors. @xref{Vector Extensions} for details of
+an array of three such vectors. @xref{Vector Extensions}, for details of
manipulating objects of vector types.
This attribute is only applicable to integral and floating scalar types.