diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Target/TargetOptions.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h index 554a32b9d9..72bb272015 100644 --- a/include/llvm/Target/TargetOptions.h +++ b/include/llvm/Target/TargetOptions.h @@ -78,6 +78,10 @@ namespace llvm { /// 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; + + /// OptimizeForSize - When this flags is set, code generator avoids optimization + /// that increases size. + extern bool OptimizeForSize; } // End llvm namespace #endif |