summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2009-11-27 13:38:03 +0000
committerDuncan Sands <baldrick@free.fr>2009-11-27 13:38:03 +0000
commitd40d14e98c271068d17585e81d45ee9eca147393 (patch)
tree444d8f37d84fe6092c38997de69fcc70da41c3dd /docs
parent65687f76c0732e04eb3dac2164e88ff269615111 (diff)
downloadllvm-d40d14e98c271068d17585e81d45ee9eca147393.tar.gz
llvm-d40d14e98c271068d17585e81d45ee9eca147393.tar.bz2
llvm-d40d14e98c271068d17585e81d45ee9eca147393.tar.xz
Vector types are no longer required to have a power-of-two length.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90004 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index d67e43ccfd..17af1b34e1 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -1760,8 +1760,7 @@ Classifications</a> </div>
<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>