- 13 Sep, 2012 1 commit
-
-
ian@well-typed.com authored
-
- 09 Sep, 2012 1 commit
-
-
Iavor S. Diatchki authored
-
- 28 Aug, 2012 1 commit
-
-
Simon Marlow authored
-
- 24 Aug, 2012 1 commit
-
-
Simon Marlow authored
-
- 21 Aug, 2012 2 commits
-
-
Simon Marlow authored
-
Simon Marlow authored
-- | Like the function 'error', but appends a stack trace to the error -- message if one is available. errorWithStackTrace :: String -> a
-
- 20 Aug, 2012 1 commit
-
-
pcapriotti authored
The previous implementation was: forever a = a >> forever a which can create a space leak in some cases, even with optimizations. The current implementation: forever a = let a' = a >> a' in a' prevents repeated thunk allocations by creating a single thunk for the final result, even without optimizations.
-
- 15 Aug, 2012 2 commits
-
-
-
Simon Peyton Jones authored
-
- 13 Aug, 2012 2 commits
-
-
ian@well-typed.com authored
-
Simon Peyton Jones authored
-
- 10 Aug, 2012 3 commits
-
-
ian@well-typed.com authored
-
ian@well-typed.com authored
-
ian@well-typed.com authored
This allows the programmer to profile only part of a program's runtime, for example, ignoring startup and shutdown phases of programs.
-
- 08 Aug, 2012 1 commit
-
-
pcapriotti authored
-
- 05 Aug, 2012 1 commit
-
-
ian@well-typed.com authored
-
- 02 Aug, 2012 1 commit
-
-
Simon Marlow authored
It can't be any other calling convention, e.g. stdcall.
-
- 26 Jul, 2012 1 commit
-
-
pcapriotti authored
-
- 25 Jul, 2012 2 commits
-
-
pcapriotti authored
-
pcapriotti authored
-
- 24 Jul, 2012 1 commit
-
-
pcapriotti authored
Move rules in GHC.Base to PrelRules and convert them to BuiltinRules.
-
- 20 Jul, 2012 3 commits
-
-
Ian Lynagh authored
-
Ian Lynagh authored
-
Ian Lynagh authored
-
- 19 Jul, 2012 1 commit
-
-
Ian Lynagh authored
-
- 18 Jul, 2012 1 commit
-
-
Ian Lynagh authored
-
- 17 Jul, 2012 2 commits
-
-
pcapriotti authored
-
pcapriotti authored
-
- 15 Jul, 2012 1 commit
-
-
Ian Lynagh authored
-
- 13 Jul, 2012 2 commits
- 11 Jul, 2012 1 commit
-
-
Simon Marlow authored
-
- 10 Jul, 2012 1 commit
-
-
Also, add a warning to modifySTRef, mostly copy-pasted from the warning for modifyIORef.
-
- 09 Jul, 2012 1 commit
-
-
Simon Marlow authored
-
- 04 Jul, 2012 3 commits
-
-
Simon Marlow authored
-
Simon Marlow authored
As per discussion on the libraries list.
-
Simon Marlow authored
-
- 02 Jul, 2012 1 commit
-
-
pcapriotti authored
Ensure numberToRangedRational returns Nothing immediately if the exponent is outside Int range, so that we avoid an integer overflow later.
-
- 29 Jun, 2012 1 commit
-
-
Ian Lynagh authored
-
- 27 Jun, 2012 1 commit
-
-
pcapriotti authored
Patch by Johan Tibell <johan.tibell@gmail.com>
-