From: simonm Date: Tue, 6 Apr 1999 09:46:36 +0000 (+0000) Subject: [project @ 1999-04-06 09:46:36 by simonm] X-Git-Tag: Approximately_9120_patches~6332 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=d1bc23d5a1b9f72c6c5d5360a5ec72aa32ab92ca;p=ghc-hetmet.git [project @ 1999-04-06 09:46:36 by simonm] Add -funbox-strict-fields --- diff --git a/ghc/driver/ghc.lprl b/ghc/driver/ghc.lprl index 10415f2..eb9f967 100644 --- a/ghc/driver/ghc.lprl +++ b/ghc/driver/ghc.lprl @@ -3167,6 +3167,9 @@ arg: while($_ = $Args[0]) { /^-fno-let-from-(case|app|strict-let)$/ # experimental, really (WDP 95/10) && do { push(@HsC_flags, $_); next arg; }; + /^-funbox-strict-fields$/ + && do { push(@HsC_flags, $_); next arg; }; + # --------------- Warnings etc. ------ /^-fwarn-(.*)$/ && do { push(@HsC_flags, $_); next arg; };