From: rrt Date: Mon, 1 Oct 2001 14:28:37 +0000 (+0000) Subject: [project @ 2001-10-01 14:28:37 by rrt] X-Git-Tag: Approximately_9120_patches~881 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=36bdd4d133354d8bd03cd0d0c8cf625794980c04;p=ghc-hetmet.git [project @ 2001-10-01 14:28:37 by rrt] Implement -keep-il-file. --- diff --git a/ghc/compiler/main/DriverState.hs b/ghc/compiler/main/DriverState.hs index ca4f05a..93c581a 100644 --- a/ghc/compiler/main/DriverState.hs +++ b/ghc/compiler/main/DriverState.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- $Id: DriverState.hs,v 1.58 2001/09/26 15:12:34 simonpj Exp $ +-- $Id: DriverState.hs,v 1.59 2001/10/01 14:28:37 rrt Exp $ -- -- Settings for the driver -- @@ -63,6 +63,7 @@ v_Hs_source_cpp_opts = global -- Keep output from intermediate phases GLOBAL_VAR(v_Keep_hi_diffs, False, Bool) GLOBAL_VAR(v_Keep_hc_files, False, Bool) +GLOBAL_VAR(v_Keep_il_files, False, Bool) GLOBAL_VAR(v_Keep_s_files, False, Bool) GLOBAL_VAR(v_Keep_raw_s_files, False, Bool) GLOBAL_VAR(v_Keep_tmp_files, False, Bool)