Reverse sense of unwind-tables option. This means
[oota-llvm.git] / include / llvm / Target / TargetOptions.h
index 554a32b9d9f1c17ea4aa2fba3a91abcd7b7b40fd..890263f043106cebd17296bd0924c142a3552899 100644 (file)
@@ -74,10 +74,18 @@ namespace llvm {
   /// be emitted.
   extern bool ExceptionHandling;
 
+  /// UnwindTablesMandatory - This flag indicates that unwind tables should
+  /// be emitted for all functions.
+  extern bool UnwindTablesMandatory;
+
   /// PerformTailCallOpt - This flag is enabled when -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;
+
+  /// OptimizeForSize - When this flag is set, the code generator avoids 
+  /// optimizations that increase size.
+  extern bool OptimizeForSize;
 } // End llvm namespace
 
 #endif