Packed elements must be a power of two in size
authorChris Lattner <sabre@nondot.org>
Thu, 10 Nov 2005 01:44:22 +0000 (01:44 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 10 Nov 2005 01:44:22 +0000 (01:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24266 91177308-0d34-0410-b5e6-96231b3b80d8

docs/LangRef.html

index 575f81ee071632cb2273393d39214b34905ea73f..59dacf7ef40d626c8d9ee2f84af6e0ff2e464f47 100644 (file)
@@ -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>