[commit: ghc] supercompiler: Correct flag name for memo cache preinitializatio (85be468)
Max Bolingbroke <[email protected]>
| Newsgroups | gmane.comp.lang.haskell.cvs.ghc |
|---|---|
| Message-ID | <[email protected]> |
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : supercompiler http://hackage.haskell.org/trac/ghc/changeset/85be4686128b710f30f350591c6ceb221e0a21bd >--------------------------------------------------------------- commit 85be4686128b710f30f350591c6ceb221e0a21bd Author: Max Bolingbroke <[email protected]> Date: Mon Mar 12 12:03:16 2012 +0000 Correct flag name for memo cache preinitializatio >--------------------------------------------------------------- compiler/supercompile/Supercompile/StaticFlags.hs | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/compiler/supercompile/Supercompile/StaticFlags.hs b/compiler/supercompile/Supercompile/StaticFlags.hs index fa1180f..f69314f 100644 --- a/compiler/supercompile/Supercompile/StaticFlags.hs +++ b/compiler/supercompile/Supercompile/StaticFlags.hs @@ -139,7 +139,7 @@ pOSITIVE_INFORMATION = lookUp $ fsLit "-fsupercompiler-positive-information" -- in practice. pREINITALIZE_MEMO_TABLE :: Bool -pREINITALIZE_MEMO_TABLE = lookUp $ fsLit "-fsupercompiler-no-preinitalize" +pREINITALIZE_MEMO_TABLE = lookUp $ fsLit "-fsupercompiler-preinitalize" data DeedsPolicy = FCFS | Proportional deriving (Read)