[llvm-commits] [llvm] r97530 - /llvm/trunk/docs/LangRef.html
Dan Gohman
gohman at apple.com
Mon Mar 1 17:08:12 PST 2010
Author: djg
Date: Mon Mar 1 19:08:11 2010
New Revision: 97530
URL: http://llvm.org/viewvc/llvm-project?rev=97530&view=rev
Log:
PerformTailCallOpt was renamed to GuaranteedTailCallOpt to
better reflect its meaning, now that tail call optimizations
are done by default in some cases.
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=97530&r1=97529&r2=97530&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Mon Mar 1 19:08:11 2010
@@ -5140,7 +5140,7 @@
<li>The call is in tail position (ret immediately follows call and ret
uses value of call or is void).</li>
<li>Option <tt>-tailcallopt</tt> is enabled,
- or <code>llvm::PerformTailCallOpt</code> is <code>true</code>.</li>
+ or <code>llvm::GuaranteedTailCallOpt</code> is <code>true</code>.</li>
<li><a href="CodeGenerator.html#tailcallopt">Platform specific
constraints are met.</a></li>
</ul>
More information about the llvm-commits
mailing list