mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Rename the PerformTailCallOpt variable to GuaranteedTailCallOpt to reflect
its current purpose. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95564 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -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",
|
||||
|
Reference in New Issue
Block a user