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

Nick Lewycky nicholas at mxc.ca
Sat Feb 28 09:30:12 PST 2009


Author: nicholas
Date: Sat Feb 28 11:30:06 2009
New Revision: 65697

URL: http://llvm.org/viewvc/llvm-project?rev=65697&view=rev
Log:
Update this text for first-class aggregates.

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=65697&r1=65696&r2=65697&view=diff

==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Sat Feb 28 11:30:06 2009
@@ -1951,9 +1951,10 @@
   identical (same number of bits). The conversion is done as if the CST value
   was stored to memory and read back as TYPE. In other words, no bits change 
   with this operator, just the type.  This can be used for conversion of
-  vector types to any other type, as long as they have the same bit width. For
-  pointers it is only valid to cast to another pointer type. It is not valid
-  to bitcast to or from an aggregate type.
+  aggregate types to any aggregate type, as long as they have the same bit
+  width. Vector types may also be casted to and from any other type as long as
+  they have the same bit width. For pointers it is only valid to cast to
+  another pointer type.
   </dd>
 
   <dt><b><tt>getelementptr ( CSTPTR, IDX0, IDX1, ... )</tt></b></dt>





More information about the llvm-commits mailing list