[llvm-commits] CVS: llvm/docs/LangRef.html

Chris Lattner lattner at cs.uiuc.edu
Wed Nov 9 17:44:33 PST 2005



Changes in directory llvm/docs:

LangRef.html updated: 1.114 -> 1.115
---
Log message:

Packed elements must be a power of two in size


---
Diffs of the changes:  (+3 -2)

 LangRef.html |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)


Index: llvm/docs/LangRef.html
diff -u llvm/docs/LangRef.html:1.114 llvm/docs/LangRef.html:1.115
--- llvm/docs/LangRef.html:1.114	Sun Nov  6 02:02:57 2005
+++ llvm/docs/LangRef.html	Wed Nov  9 19:44:22 2005
@@ -850,7 +850,8 @@
 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>
@@ -3387,7 +3388,7 @@
 
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2005/11/06 08:02:57 $
+  Last modified: $Date: 2005/11/10 01:44:22 $
 </address>
 </body>
 </html>






More information about the llvm-commits mailing list