[llvm-commits] CVS: llvm/docs/LangRef.html
John Criswell
criswell at cs.uiuc.edu
Thu May 12 09:55:52 PDT 2005
Changes in directory llvm/docs:
LangRef.html updated: 1.104 -> 1.105
---
Log message:
Correct a detail with the alloca instruction.
Functions do not exit with invoke; they exit with unwind.
---
Diffs of the changes: (+2 -2)
LangRef.html | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/docs/LangRef.html
diff -u llvm/docs/LangRef.html:1.104 llvm/docs/LangRef.html:1.105
--- llvm/docs/LangRef.html:1.104 Thu May 12 11:52:32 2005
+++ llvm/docs/LangRef.html Thu May 12 11:55:34 2005
@@ -1837,7 +1837,7 @@
memory is automatically released when the function returns. The '<tt>alloca</tt>'
instruction is commonly used to represent automatic variables that must
have an address available. When the function returns (either with the <tt><a
- href="#i_ret">ret</a></tt> or <tt><a href="#i_invoke">invoke</a></tt>
+ href="#i_ret">ret</a></tt> or <tt><a href="#i_unwind">unwind</a></tt>
instructions), the memory is reclaimed.</p>
<h5>Example:</h5>
<pre> %ptr = alloca int <i>; yields {int*}:ptr</i>
@@ -3298,7 +3298,7 @@
<a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
<a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
- Last modified: $Date: 2005/05/12 16:52:32 $
+ Last modified: $Date: 2005/05/12 16:55:34 $
</address>
</body>
</html>
More information about the llvm-commits
mailing list