cvs commit: fptools/ghc/compiler/coreSyn CorePrep.lhs CoreSyn.lhs CoreUtils.lhs fptools/ghc/compiler/ilxGen IlxGen.lhs fptools/ghc/compiler/main CmdLineOpts.lhs fptools/ghc/compiler/stgSyn CoreToStg.lhs StgSyn.lhs fptools/ghc/compiler/typecheck ...

Simon Peyton Jones simonpj@glass.cse.ogi.edu
Fri, 25 May 2001 01:55:05 -0700


simonpj     2001/05/25 01:55:04 PDT

  Modified files:
    ghc/compiler/coreSyn CorePrep.lhs CoreSyn.lhs CoreUtils.lhs 
    ghc/compiler/ilxGen  IlxGen.lhs 
    ghc/compiler/main    CmdLineOpts.lhs 
    ghc/compiler/stgSyn  CoreToStg.lhs StgSyn.lhs 
    ghc/compiler/typecheck TcForeign.lhs TcMatches.lhs 
  Log:
  	-------------------------------------
  	Wibbles to Don's runtime-types commit
  	-------------------------------------
  
  There was an upside down predicate which utterly broke the compiler.
  
  While I was about it
  
  * I changed the global flag to
  	opt_RuntimeTypes
    with command line option
  	-fruntime-types (was -fkeep-stg-types)
  
  * I moved isRuntimeArg, isRuntimeVar to CoreSyn
  
  Revision  Changes    Path
  1.4       +1 -1      fptools/ghc/compiler/coreSyn/CorePrep.lhs
  1.42      +18 -1     fptools/ghc/compiler/coreSyn/CoreSyn.lhs
  1.80      +4 -27     fptools/ghc/compiler/coreSyn/CoreUtils.lhs
  1.11      +11 -11    fptools/ghc/compiler/ilxGen/IlxGen.lhs
  1.142     +2 -2      fptools/ghc/compiler/main/CmdLineOpts.lhs
  1.84      +7 -7      fptools/ghc/compiler/stgSyn/CoreToStg.lhs
  1.36      +1 -1      fptools/ghc/compiler/stgSyn/StgSyn.lhs
  1.33      +35 -7     fptools/ghc/compiler/typecheck/TcForeign.lhs
  1.44      +4 -1      fptools/ghc/compiler/typecheck/TcMatches.lhs