[llvm-commits] [llvm] r90004 - /llvm/trunk/docs/LangRef.html

Duncan Sands baldrick at free.fr
Fri Nov 27 05:38:04 PST 2009


Author: baldrick
Date: Fri Nov 27 07:38:03 2009
New Revision: 90004

URL: http://llvm.org/viewvc/llvm-project?rev=90004&view=rev
Log:
Vector types are no longer required to have a power-of-two length.

Modified:
    llvm/trunk/docs/LangRef.html

Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=90004&r1=90003&r2=90004&view=diff

==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Fri Nov 27 07:38:03 2009
@@ -1760,8 +1760,7 @@
 <p>A vector type is a simple derived type that represents a vector of elements.
    Vector types are used when multiple primitive data are operated in parallel
    using a single instruction (SIMD).  A vector type requires a size (number of
-   elements) and an underlying primitive data type.  Vectors must have a power
-   of two length (1, 2, 4, 8, 16 ...).  Vector types are considered
+   elements) and an underlying primitive data type.  Vector types are considered
    <a href="#t_firstclass">first class</a>.</p>
 
 <h5>Syntax:</h5>





More information about the llvm-commits mailing list