aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-05-28 01:14:11 +0000
committerDan Gohman <gohman@apple.com>2010-05-28 01:14:11 +0000
commit3eb67d59fcf724e8345fb783b1b891e31dcfc151 (patch)
tree8de936a75e71c78268a937ba4aecddde53052446 /docs
parentf0767ba1940a38f530ee4b78aaae30d0f4513b3b (diff)
downloadexternal_llvm-3eb67d59fcf724e8345fb783b1b891e31dcfc151.zip
external_llvm-3eb67d59fcf724e8345fb783b1b891e31dcfc151.tar.gz
external_llvm-3eb67d59fcf724e8345fb783b1b891e31dcfc151.tar.bz2
Eliminate the restriction that the array size in an alloca must be i32.
This will help reduce the amount of casting required on 64-bit targets. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104911 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 4b1919a..bfb4256 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -4239,7 +4239,7 @@ Instruction</a> </div>
<h5>Syntax:</h5>
<pre>
- &lt;result&gt; = alloca &lt;type&gt;[, i32 &lt;NumElements&gt;][, align &lt;alignment&gt;] <i>; yields {type*}:result</i>
+ &lt;result&gt; = alloca &lt;type&gt;[, &lt;ty&gt; &lt;NumElements&gt;][, align &lt;alignment&gt;] <i>; yields {type*}:result</i>
</pre>
<h5>Overview:</h5>