From: simonmar Date: Thu, 5 Oct 2000 11:15:20 +0000 (+0000) Subject: [project @ 2000-10-05 11:15:20 by simonmar] X-Git-Tag: Approximately_9120_patches~3692 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=33a6d46204f9363b2b9dcca1fccbd7e19f70c431;p=ghc-hetmet.git [project @ 2000-10-05 11:15:20 by simonmar] add -fgenerics --- diff --git a/ghc/compiler/main/CmdLineOpts.lhs b/ghc/compiler/main/CmdLineOpts.lhs index adab1aa..69f7c24 100644 --- a/ghc/compiler/main/CmdLineOpts.lhs +++ b/ghc/compiler/main/CmdLineOpts.lhs @@ -88,6 +88,7 @@ module CmdLineOpts ( opt_AllowOverlappingInstances, opt_AllowUndecidableInstances, opt_GlasgowExts, + opt_Generics, opt_IrrefutableTuples, opt_NumbersStrict, opt_Parallel, @@ -381,6 +382,7 @@ opt_DictsStrict = lookUp SLIT("-fdicts-strict") opt_AllowOverlappingInstances = lookUp SLIT("-fallow-overlapping-instances") opt_AllowUndecidableInstances = lookUp SLIT("-fallow-undecidable-instances") opt_GlasgowExts = lookUp SLIT("-fglasgow-exts") +opt_Generics = lookUp SLIT("-fgenerics") opt_IrrefutableTuples = lookUp SLIT("-firrefutable-tuples") opt_MaxContextReductionDepth = lookup_def_int "-fcontext-stack" mAX_CONTEXT_REDUCTION_DEPTH opt_NumbersStrict = lookUp SLIT("-fnumbers-strict")