diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2008-06-28 17:48:25 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@gcc.gnu.org> | 2008-06-28 17:48:25 +0000 |
commit | ffba3fd05d96e592a4103707557e57339b36d371 (patch) | |
tree | 67d8d70763c4cd8636ea4d93ccad82568bfc622b /gcc | |
parent | 7ae14d313336615d8dc5323902ec4f4278573a52 (diff) | |
download | gcc-ffba3fd05d96e592a4103707557e57339b36d371.zip gcc-ffba3fd05d96e592a4103707557e57339b36d371.tar.gz gcc-ffba3fd05d96e592a4103707557e57339b36d371.tar.bz2 |
rtl.texi (const_vector): Document const_fixed as legitimate element type of const_vector.
* doc/rtl.texi (const_vector): Document const_fixed as legitimate
element type of const_vector.
From-SVN: r137230
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/rtl.texi | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5ce26bca..909e4a6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-06-28 Ulrich Weigand <Ulrich.Weigand@de.ibm.com> + + * doc/rtl.texi (const_vector): Document const_fixed as legitimate + element type of const_vector. + 2008-06-28 Uros Bizjak <ubizjak@gmail.com> * config/i386/i386.md (addti3, adddi3, addsi3, addhi3, addqi3): diff --git a/gcc/doc/rtl.texi b/gcc/doc/rtl.texi index 2d95256..6d6f280 100644 --- a/gcc/doc/rtl.texi +++ b/gcc/doc/rtl.texi @@ -1527,7 +1527,7 @@ with @code{CONST_FIXED_VALUE_LOW}. @item (const_vector:@var{m} [@var{x0} @var{x1} @dots{}]) Represents a vector constant. The square brackets stand for the vector containing the constant elements. @var{x0}, @var{x1} and so on are -the @code{const_int} or @code{const_double} elements. +the @code{const_int}, @code{const_double} or @code{const_fixed} elements. The number of units in a @code{const_vector} is obtained with the macro @code{CONST_VECTOR_NUNITS} as in @code{CONST_VECTOR_NUNITS (@var{v})}. |