From: Ian Lynagh Date: Sat, 4 Aug 2007 16:49:30 +0000 (+0000) Subject: Fix -fallow* flags X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=702c358f0ac01e15f5830f8b430b57eee13a872e Fix -fallow* flags --- diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index ac8c606..23a92c8 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -1162,11 +1162,11 @@ fFlags = [ -- Deprecated in favour of -XPArr: ( "parr", Opt_PArr ), -- Deprecated in favour of -XOverlappingInstances: - ( "AllowOverlappingInstances", Opt_OverlappingInstances ), + ( "allow-overlapping-instances", Opt_OverlappingInstances ), -- Deprecated in favour of -XUndecidableInstances: - ( "AllowUndecidableInstances", Opt_UndecidableInstances ), + ( "allow-undecidable-instances", Opt_UndecidableInstances ), -- Deprecated in favour of -XIncoherentInstances: - ( "AllowIncoherentInstances", Opt_IncoherentInstances ) + ( "allow-incoherent-instances", Opt_IncoherentInstances ) ]