[llvm-commits] [llvm] r146561 - /llvm/trunk/docs/LangRef.html

Duncan Sands baldrick at free.fr
Wed Dec 14 07:44:21 PST 2011


Author: baldrick
Date: Wed Dec 14 09:44:20 2011
New Revision: 146561

URL: http://llvm.org/viewvc/llvm-project?rev=146561&view=rev
Log:
Vectors are not aggregate types (see isAggregateType).

Modified:
    llvm/trunk/docs/LangRef.html

Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=146561&r1=146560&r2=146561&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Wed Dec 14 09:44:20 2011
@@ -1913,9 +1913,9 @@
 <div>
 
 <p>Aggregate Types are a subset of derived types that can contain multiple
-  member types. <a href="#t_array">Arrays</a>,
-  <a href="#t_struct">structs</a>, and <a href="#t_vector">vectors</a> are
-  aggregate types.</p>
+  member types. <a href="#t_array">Arrays</a> and
+  <a href="#t_struct">structs</a> are aggregate types.
+  <a href="#t_vector">Vectors</a> are not considered to be aggregate types.</p>
 
 </div>
 





More information about the llvm-commits mailing list