cvs commit: fptools/ghc/compiler/stranal DmdAnal.lhs

Simon Peyton Jones simonpj@glass.cse.ogi.edu
Wed, 25 Jul 2001 06:29:07 -0700


simonpj     2001/07/25 06:29:07 PDT

  Modified files:
    ghc/compiler/stranal DmdAnal.lhs 
  Log:
  	---------------------------------
  	Fix a bug in the defn of "both"
  	---------------------------------
  
  This bug made the bootstrapped GHC enter an absent argument.
  
  The change is from
  
  	both Lazy (Seq k Now ds) = Seq Keep Now ds
  to
  	both Lazy (Seq k l ds) = Seq Keep l ds
  
  Simple, eh?  (Comments with the code.)
  
  Revision  Changes    Path
  1.9       +18 -5     fptools/ghc/compiler/stranal/DmdAnal.lhs