summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/X86/X86FastISel.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-02-08 20:27:50 +0000
committerDan Gohman <gohman@apple.com>2010-02-08 20:27:50 +0000
commit3464a5b6090a386dad3111edb7df49ca42526421 (patch)
treec2a6d4fd52c27cc684284982480a625eee8a6c6c /llvm/lib/Target/X86/X86FastISel.cpp
parentddf1445134a69405d3812adc2128c4a72902defa (diff)
downloadbcm5719-llvm-3464a5b6090a386dad3111edb7df49ca42526421.tar.gz
bcm5719-llvm-3464a5b6090a386dad3111edb7df49ca42526421.zip
Rename the PerformTailCallOpt variable to GuaranteedTailCallOpt to reflect
its current purpose. llvm-svn: 95564
Diffstat (limited to 'llvm/lib/Target/X86/X86FastISel.cpp')
-rw-r--r--llvm/lib/Target/X86/X86FastISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86FastISel.cpp b/llvm/lib/Target/X86/X86FastISel.cpp
index d466ce0d4fb..392b96dacbd 100644
--- a/llvm/lib/Target/X86/X86FastISel.cpp
+++ b/llvm/lib/Target/X86/X86FastISel.cpp
@@ -1247,7 +1247,7 @@ bool X86FastISel::X86SelectCall(Instruction *I) {
// 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)
+ if (CC == CallingConv::Fast && GuaranteedTailCallOpt)
return false;
// Let SDISel handle vararg functions.
OpenPOWER on IntegriCloud