diff options
author | Manuel Jacob <me@manueljacob.de> | 2014-07-30 12:30:06 +0000 |
---|---|---|
committer | Manuel Jacob <me@manueljacob.de> | 2014-07-30 12:30:06 +0000 |
commit | 961f7878f162f77fefb8cf27ee36e71baa63d84d (patch) | |
tree | d4fda3f74a1628d158c084b0524b774fb3871170 | |
parent | f9f672c06de57f4fb83897837feb5d42411c32ef (diff) | |
download | bcm5719-llvm-961f7878f162f77fefb8cf27ee36e71baa63d84d.tar.gz bcm5719-llvm-961f7878f162f77fefb8cf27ee36e71baa63d84d.zip |
Correct vector type definition in LangRef.
According to VectorType::isValidElementType, any integer, floating point
or pointer type is a valid vector element type.
llvm-svn: 214302
-rw-r--r-- | llvm/docs/LangRef.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index a3c0e8988a2..cc801f71313 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -1966,8 +1966,8 @@ type. Vector types are considered :ref:`first class <t_firstclass>`. < <# elements> x <elementtype> > The number of elements is a constant integer value larger than 0; -elementtype may be any integer or floating point type, or a pointer to -these types. Vectors of size zero are not allowed. +elementtype may be any integer, floating point or pointer type. Vectors +of size zero are not allowed. :Examples: |