1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Clarify what -tailcallopt option actually do.

llvm-svn: 94628
This commit is contained in:
Evan Cheng 2010-01-27 00:10:09 +00:00
parent e96f9c1cab
commit 40c3104c01

View File

@ -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>