From fbbee8d7f967b72c5ec3105ef1b21e8a115a8b78 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 2 Mar 2010 01:08:11 +0000 Subject: [PATCH] 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 --- docs/LangRef.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index 88c89a3a6a0..9fcdee883c3 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -5140,7 +5140,7 @@ Loop: ; Infinite loop that counts from 0 on up...
  • The call is in tail position (ret immediately follows call and ret uses value of call or is void).
  • Option -tailcallopt is enabled, - or llvm::PerformTailCallOpt is true.
  • + or llvm::GuaranteedTailCallOpt is true.
  • Platform specific constraints are met.
  • -- 2.34.1