Reword this comment to reference a more fundamental issue.

llvm-svn: 93154
This commit is contained in:
Dan Gohman 2010-01-11 17:14:46 +00:00
parent 40775003e6
commit 40ea3e5ce2
1 changed files with 2 additions and 2 deletions

View File

@ -1230,8 +1230,8 @@ bool X86FastISel::X86SelectCall(Instruction *I) {
CC != CallingConv::X86_FastCall)
return false;
// On X86, -tailcallopt changes the fastcc ABI. FastISel doesn't
// handle this for now.
// fastcc with -tailcallopt is intended to provide a guaranteed
// tail call optimization. Fastisel doesn't know how to do that.
if (CC == CallingConv::Fast && PerformTailCallOpt)
return false;