aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Target/TargetMachine.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2010-01-27 00:10:09 +0000
committerEvan Cheng <evan.cheng@apple.com>2010-01-27 00:10:09 +0000
commit640b58b8d7e3b0244540f8ef3a07c8191e08e8ee (patch)
tree3ec377afc564869d7ef35479668e72b776995db1 /llvm/lib/Target/TargetMachine.cpp
parenta3575ca846b522398b5167bd2eedc808a744b39c (diff)
downloadllvm-640b58b8d7e3b0244540f8ef3a07c8191e08e8ee.zip
llvm-640b58b8d7e3b0244540f8ef3a07c8191e08e8ee.tar.gz
llvm-640b58b8d7e3b0244540f8ef3a07c8191e08e8ee.tar.bz2
Clarify what -tailcallopt option actually do.
llvm-svn: 94628
Diffstat (limited to 'llvm/lib/Target/TargetMachine.cpp')
-rw-r--r--llvm/lib/Target/TargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp
index fec59b5..8d99044 100644
--- a/llvm/lib/Target/TargetMachine.cpp
+++ b/llvm/lib/Target/TargetMachine.cpp
@@ -174,7 +174,7 @@ DefCodeModel("code-model",
clEnumValEnd));
static cl::opt<bool, true>
EnablePerformTailCallOpt("tailcallopt",
- cl::desc("Turn on tail call optimization."),
+ cl::desc("Turn fastcc calls into tail calls by (potentially) changing ABI."),
cl::location(PerformTailCallOpt),
cl::init(false));
static cl::opt<unsigned, true>