aboutsummaryrefslogtreecommitdiffstats
path: root/docs/LangRef.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-11-10 01:44:22 +0000
committerChris Lattner <sabre@nondot.org>2005-11-10 01:44:22 +0000
commitb8d172f8007bd352d5f27a2773f316fd4ba8957e (patch)
treede3a08655a21a71986b18dc2dc1821c28c31d98e /docs/LangRef.html
parent9547d7fe3355f114db7748f79f2ea9461757c657 (diff)
downloadexternal_llvm-b8d172f8007bd352d5f27a2773f316fd4ba8957e.zip
external_llvm-b8d172f8007bd352d5f27a2773f316fd4ba8957e.tar.gz
external_llvm-b8d172f8007bd352d5f27a2773f316fd4ba8957e.tar.bz2
Packed elements must be a power of two in size
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24266 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LangRef.html')
-rw-r--r--docs/LangRef.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 575f81e..59dacf7 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -850,7 +850,8 @@ reference to another object, which must live in memory.</p>
of elements. Packed types are used when multiple primitive data
are operated in parallel using a single instruction (SIMD).
A packed type requires a size (number of
-elements) and an underlying primitive data type. Packed types are
+elements) and an underlying primitive data type. Vectors must have a power
+of two length (1, 2, 4, 8, 16 ...). Packed types are
considered <a href="#t_firstclass">first class</a>.</p>
<h5>Syntax:</h5>