diff options
author | Dan Gohman <gohman@apple.com> | 2010-02-08 20:27:50 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-02-08 20:27:50 +0000 |
commit | 3464a5b6090a386dad3111edb7df49ca42526421 (patch) | |
tree | c2a6d4fd52c27cc684284982480a625eee8a6c6c /llvm/lib/Target/TargetMachine.cpp | |
parent | ddf1445134a69405d3812adc2128c4a72902defa (diff) | |
download | bcm5719-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/TargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/TargetMachine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp index 8d990443be1..88871e3580c 100644 --- a/llvm/lib/Target/TargetMachine.cpp +++ b/llvm/lib/Target/TargetMachine.cpp @@ -40,7 +40,7 @@ namespace llvm { bool UnwindTablesMandatory; Reloc::Model RelocationModel; CodeModel::Model CMModel; - bool PerformTailCallOpt; + bool GuaranteedTailCallOpt; unsigned StackAlignment; bool RealignStack; bool DisableJumpTables; @@ -173,9 +173,9 @@ DefCodeModel("code-model", "Large code model"), clEnumValEnd)); static cl::opt<bool, true> -EnablePerformTailCallOpt("tailcallopt", +EnableGuaranteedTailCallOpt("tailcallopt", cl::desc("Turn fastcc calls into tail calls by (potentially) changing ABI."), - cl::location(PerformTailCallOpt), + cl::location(GuaranteedTailCallOpt), cl::init(false)); static cl::opt<unsigned, true> OverrideStackAlignment("stack-alignment", |