Skip to content
Snippets Groups Projects
  1. Mar 16, 1999
    • Simon Peyton Jones's avatar
      [project @ 1999-03-16 12:31:55 by simonpj] · 831297f1
      Simon Peyton Jones authored
      Make it only a warning if you have a type like this:
      
      	forall a. Int -> Int
      
      These show up in interface files occasionally, just because
      the simplifier is a bit blase about adding type arguments.
      
      But it's an error to have
      
      	forall a. Eq a => Int -> Int
      
      The flag -fwarn-unused-matches reports a warning for these
      redundant for-alls.
      831297f1
  2. Mar 15, 1999
  3. Mar 11, 1999
  4. Mar 10, 1999
  5. Mar 09, 1999
  6. Mar 08, 1999
  7. Mar 05, 1999
    • Keith Wansbrough's avatar
      [project @ 1999-03-05 12:43:26 by kw217] · 3f767306
      Keith Wansbrough authored
      More counters reinstated; this should be the lot now:
        ENT_AP_UPD_ctr, ENT_BH_ctr, RET_UNBOXED_TUP_ctr, RET_UNBOXED_TUP_hst[]
      3f767306
    • Keith Wansbrough's avatar
      [project @ 1999-03-05 12:02:33 by kw217] · a9e75a05
      Keith Wansbrough authored
      Counter UPD_PAP_IN_PLACE_ctr erroneously missed from raw Ticky dump.
      a9e75a05
    • sof's avatar
      [project @ 1999-03-05 10:21:22 by sof] · 9b910bc8
      sof authored
      Support for unsafely thawing your (Byte)Arrays, i.e., added the
      following ops:
      
       MutableArray.unsafeThawArray :: Ix ix => Array ix elt -> ST s (MutableArray s ix elt)
       MutableArray.unsafeThawByteArray :: Ix ix => ByteArray ix -> ST s (MutableByteArray s ix)
       MutableArray.thawByteArray :: Ix ix => ByteArray ix -> ST s (MutableByteArray s ix)
      
       ST.unsafeThawSTArray 	    :: Ix ix => Array ix elt -> ST s (STArray s ix elt)
       LazyST.unsafeThawSTArray   :: Ix ix => Array ix elt -> ST s (STArray s ix elt)
      
       IOExts.unsafeFreezeIOArray :: Ix ix => IOArray ix elt -> IO (Array ix elt)
       IOExts.unsafeThawIOArray   :: Ix ix => Array ix elt -> IO (IOArray ix elt)
      
      + removed the re-exportation of Monad that ST and LazyST did.
      9b910bc8
    • sof's avatar
      [project @ 1999-03-05 09:38:43 by sof] · 2ed3e0f4
      sof authored
      Remove the Show instance for (a->b). It will not be missed..
      2ed3e0f4
  8. Mar 04, 1999
  9. Mar 03, 1999
Loading