diff options
Diffstat (limited to 'include/llvm/Target/TargetOptions.h')
-rw-r--r-- | include/llvm/Target/TargetOptions.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h index 7421f96..dd54432 100644 --- a/include/llvm/Target/TargetOptions.h +++ b/include/llvm/Target/TargetOptions.h @@ -73,6 +73,11 @@ namespace llvm { /// ExceptionHandling - This flag indicates that exception information should /// be emitted. extern bool ExceptionHandling; + + /// PerformTailCallOpt - This flag is enabled when the -tailcallopt is + /// specified on the commandline. When the flag is on, the target will perform + /// tail call optimization (pop the caller's stack) providing it supports it. + extern bool PerformTailCallOpt; } // End llvm namespace #endif |