static llvm::cl::opt<bool>
EagerlyAssume("analyzer-eagerly-assume",
- llvm::cl::init(false),
llvm::cl::desc("Eagerly assume the truth/falseness of some "
"symbolic constraints"));
static llvm::cl::opt<bool>
DisableRedZone("disable-red-zone",
- llvm::cl::desc("Do not emit code that uses the red zone."),
- llvm::cl::init(false));
+ llvm::cl::desc("Do not emit code that uses the red zone."));
static llvm::cl::opt<bool>
GenerateDebugInfo("g",
static llvm::cl::opt<bool>
NoImplicitFloat("no-implicit-float",
- llvm::cl::desc("Don't generate implicit floating point instructions (x86-only)"),
- llvm::cl::init(false));
+ llvm::cl::desc("Don't generate implicit floating point instructions (x86-only)"));
static llvm::cl::opt<bool>
NoMergeConstants("fno-merge-all-constants",
llvm::cl::desc("Use colors in diagnostics"));
static llvm::cl::opt<bool>
-SilenceRewriteMacroWarning("Wno-rewrite-macros", llvm::cl::init(false),
+SilenceRewriteMacroWarning("Wno-rewrite-macros",
llvm::cl::desc("Silence ObjC rewriting warnings"));
static llvm::cl::opt<bool>
static llvm::cl::opt<bool>
DisableFree("disable-free",
- llvm::cl::desc("Disable freeing of memory on exit"),
- llvm::cl::init(false));
+ llvm::cl::desc("Disable freeing of memory on exit"));
static llvm::cl::opt<bool>
EmptyInputOnly("empty-input-only",
llvm::cl::desc("Disable implicit builtin knowledge of functions"));
static llvm::cl::opt<bool>
-AltiVec("faltivec", llvm::cl::desc("Enable AltiVec vector initializer syntax"),
- llvm::cl::init(false));
+AltiVec("faltivec", llvm::cl::desc("Enable AltiVec vector initializer syntax"));
static llvm::cl::opt<bool>
AccessControl("faccess-control",
static llvm::cl::opt<bool>
OverflowChecking("ftrapv",
- llvm::cl::desc("Trap on integer overflow"),
- llvm::cl::init(false));
+ llvm::cl::desc("Trap on integer overflow"));
static llvm::cl::opt<unsigned>
PICLevel("pic-level", llvm::cl::desc("Value for __PIC__"));
static llvm::cl::opt<bool>
-PThread("pthread", llvm::cl::desc("Support POSIX threads in generated code"),
- llvm::cl::init(false));
+PThread("pthread", llvm::cl::desc("Support POSIX threads in generated code"));
static llvm::cl::opt<bool>
PascalStrings("fpascal-strings",