forked from OSchip/llvm-project
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
This commit is contained in:
parent
f9f672c06d
commit
961f7878f1
|
@ -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:
|
||||
|
||||
|
|
Loading…
Reference in New Issue