1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Packed elements must be a power of two in size

llvm-svn: 24266
This commit is contained in:
Chris Lattner 2005-11-10 01:44:22 +00:00
parent 8a169a30ae
commit ce1390e70e

View 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>