aboutsummaryrefslogtreecommitdiffstats
path: root/docs/LangRef.html
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2009-02-28 17:30:06 +0000
committerNick Lewycky <nicholas@mxc.ca>2009-02-28 17:30:06 +0000
commit0948271ae38e032e8521e536ab54c8ef145dcd4f (patch)
treea8f1b83100022a1d40c691a02ab4a8bc4db90457 /docs/LangRef.html
parent4cc6ef6880c386479be782285772d121f41c1a31 (diff)
downloadexternal_llvm-0948271ae38e032e8521e536ab54c8ef145dcd4f.zip
external_llvm-0948271ae38e032e8521e536ab54c8ef145dcd4f.tar.gz
external_llvm-0948271ae38e032e8521e536ab54c8ef145dcd4f.tar.bz2
Update this text for first-class aggregates.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65697 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LangRef.html')
-rw-r--r--docs/LangRef.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 07358b5..72bd76d 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -1951,9 +1951,10 @@ following is the syntax for constant expressions:</p>
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>