PerformTailCallOpt was renamed to GuaranteedTailCallOpt to

better reflect its meaning, now that tail call optimizations
are done by default in some cases.

llvm-svn: 97530
This commit is contained in:
Dan Gohman 2010-03-02 01:08:11 +00:00
parent 7894ab3a99
commit 6232f73c7b
1 changed files with 1 additions and 1 deletions

View File

@ -5140,7 +5140,7 @@ Loop: ; Infinite loop that counts from 0 on up...
<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>