[llvm-commits] CVS: llvm/docs/LangRef.html
Reid Spencer
reid at x10sys.com
Wed Mar 21 19:19:14 PDT 2007
Changes in directory llvm/docs:
LangRef.html updated: 1.213 -> 1.214
---
Log message:
Add noreturn function attribute.
---
Diffs of the changes: (+5 -1)
LangRef.html | 6 +++++-
1 files changed, 5 insertions(+), 1 deletion(-)
Index: llvm/docs/LangRef.html
diff -u llvm/docs/LangRef.html:1.213 llvm/docs/LangRef.html:1.214
--- llvm/docs/LangRef.html:1.213 Wed Mar 21 21:02:11 2007
+++ llvm/docs/LangRef.html Wed Mar 21 21:18:56 2007
@@ -739,6 +739,10 @@
<dt><tt>sret</tt></dt>
<dd>This indicates that the parameter specifies the address of a structure
that is the return value of the function in the source program.</dd>
+ <dt><tt>noreturn</tt></dt>
+ <dd>This function attribute indicates that the function never returns. This
+ indicates to LLVM that every call to this function should be treated as if
+ an <tt>unreachable</tt> instruction immediately followed the call.</dd>
<dt><tt>nounwind</tt></dt>
<dd>This function attribute indicates that the function type does not use
the unwind instruction and does not allow stack unwinding to propagate
@@ -4606,7 +4610,7 @@
<a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
<a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br>
- Last modified: $Date: 2007/03/22 02:02:11 $
+ Last modified: $Date: 2007/03/22 02:18:56 $
</address>
</body>
</html>
More information about the llvm-commits
mailing list