summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-03-02 01:08:11 +0000
committerDan Gohman <gohman@apple.com>2010-03-02 01:08:11 +0000
commitfbbee8d7f967b72c5ec3105ef1b21e8a115a8b78 (patch)
treed633d2aaad77ef449fa612d7366416716bb87752 /docs
parent319ef940303146dfb885794d21c98da1d5e84048 (diff)
downloadllvm-fbbee8d7f967b72c5ec3105ef1b21e8a115a8b78.tar.gz
llvm-fbbee8d7f967b72c5ec3105ef1b21e8a115a8b78.tar.bz2
llvm-fbbee8d7f967b72c5ec3105ef1b21e8a115a8b78.tar.xz
PerformTailCallOpt was renamed to GuaranteedTailCallOpt to
better reflect its meaning, now that tail call optimizations are done by default in some cases. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97530 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 88c89a3a6a..9fcdee883c 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -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>