diff --git a/gen/optimizer.cpp b/gen/optimizer.cpp index 2ceb79ea..299da880 100644 --- a/gen/optimizer.cpp +++ b/gen/optimizer.cpp @@ -62,22 +62,22 @@ verifyEach("verify-each", static cl::opt disableLangSpecificPasses("disable-d-passes", - cl::desc("Disable D-specific passes in -O"), + cl::desc("Disable all D-specific passes"), cl::ZeroOrMore); static cl::opt disableSimplifyRuntimeCalls("disable-simplify-drtcalls", - cl::desc("Disable simplification of runtime calls in -O"), + cl::desc("Disable simplification of druntime calls"), cl::ZeroOrMore); static cl::opt disableGCToStack("disable-gc2stack", - cl::desc("Disable promotion of GC allocations to stack memory in -O"), + cl::desc("Disable promotion of GC allocations to stack memory"), cl::ZeroOrMore); static cl::opt enableInlining("inlining", - cl::desc("(*) Enable function inlining in -O"), + cl::desc("Enable function inlining (default in -O2 and higher)"), cl::ZeroOrMore); static cl::opt