From: Ian Lynagh Date: Fri, 17 Aug 2007 20:36:31 +0000 (+0000) Subject: Add a comment that -Onot is deprecated X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=fbd60b629fd55d22de790926b0178951d281b647;p=ghc-hetmet.git Add a comment that -Onot is deprecated --- diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index f12bb79..bd97d42 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -1050,7 +1050,7 @@ dynamic_flags = [ ------ Optimisation flags ------------------------------------------ , ( "O" , NoArg (upd (setOptLevel 1))) - , ( "Onot" , NoArg (upd (setOptLevel 0))) + , ( "Onot" , NoArg (upd (setOptLevel 0))) -- deprecated , ( "O" , OptIntSuffix (\mb_n -> upd (setOptLevel (mb_n `orElse` 1)))) -- If the number is missing, use 1