| Commit message (Expand) | Author | Age | Files | Lines |
* | Use fix-sized order primops for fixed size boxed types | John Ericson | 2021-05-13 | 2 | -24/+24 |
* | base: Update Unicode data to 13.0.0 | Ben Gamari | 2021-05-11 | 4 | -49/+99 |
* | Bump binary submodule | Ben Gamari | 2021-05-06 | 1 | -0/+0 |
* | Use fix-sized arithmetic primops for fixed size boxed types | John Ericson | 2021-05-06 | 3 | -108/+239 |
* | Update documentation of 'Weak' | bit | 2021-05-03 | 1 | -8/+7 |
* | Move shift ops out of GHC.Base | Sylvain Henry | 2021-05-03 | 3 | -66/+72 |
* | Use fix-sized bit-fiddling primops for fixed size boxed types | John Ericson | 2021-05-03 | 3 | -80/+145 |
* | Redesign withDict (formerly magicDict) | Ryan Scott | 2021-04-29 | 8 | -28/+94 |
* | Fix inlining of division wrappers | Sylvain Henry | 2021-04-29 | 1 | -0/+18 |
* | Make divModInt# branchless | Sylvain Henry | 2021-04-29 | 2 | -24/+69 |
* | Allow divInt#/modInt# to inline (#18067) | Sylvain Henry | 2021-04-29 | 1 | -2/+2 |
* | Refactor modInt# to make it branchless | Sylvain Henry | 2021-04-29 | 1 | -7/+59 |
* | Refactor divInt# to make it branchless (#18067, #19636) | Sylvain Henry | 2021-04-29 | 1 | -9/+68 |
* | Add documentation for GHC.Exts.sortWith | iori tsu | 2021-04-27 | 1 | -0/+5 |
* | Eliminate unsafeEqualityProof in CorePrep | Simon Peyton Jones | 2021-04-26 | 1 | -23/+9 |
* | Add Eq1 and Ord1 Fixed instances | Oleg Grenrus | 2021-04-26 | 2 | -1/+11 |
* | Enable tables next to code for riscv64 | Andreas Schwab | 2021-04-19 | 1 | -0/+9 |
* | Use correct precedence in Complex's Read1/Show1 instances | Ryan Scott | 2021-04-18 | 4 | -3/+50 |
* | Data.List strictness optimisations for maximumBy and minimumBy | Hécate Moonlight | 2021-04-14 | 1 | -14/+21 |
* | Report actual port in libiserv:Remote.Slave.startSlave | Facundo Domínguez | 2021-04-10 | 1 | -1/+2 |
* | Implement list `fold` and `foldMap` via mconcat | Koz Ross | 2021-04-10 | 6 | -0/+70 |
* | Bignum: add BigNat Eq/Ord instances (#19647) | Sylvain Henry | 2021-04-09 | 1 | -0/+16 |
* | Change foldl' to inline when partially applied (#19534) | James Foster | 2021-04-07 | 2 | -17/+66 |
* | Bignum: remove unused extra files | Sylvain Henry | 2021-04-05 | 1 | -2/+0 |
* | Bignum: fix invalid hs-boot declaration (#19638) | Sylvain Henry | 2021-04-05 | 1 | -1/+1 |
* | Fixes Monad's associativity docs | Łukasz Gołębiewski | 2021-04-05 | 1 | -1/+1 |
* | Address review feedback on chirality | Viktor Dukhovni | 2021-04-01 | 1 | -11/+45 |
* | Chiral foldable caveats | Viktor Dukhovni | 2021-04-01 | 1 | -3/+37 |
* | libiserv: Add description | Ben Gamari | 2021-04-01 | 1 | -2/+2 |
* | ghc-boot: Use cabal-version: 3.0 | Ben Gamari | 2021-04-01 | 1 | -2/+3 |
* | ghc-bignum: Add missing source files to cabal file | Ben Gamari | 2021-04-01 | 1 | -0/+2 |
* | Data.List specialization to [] | Oleg Grenrus | 2021-04-01 | 17 | -1609/+1360 |
* | Add -Wcompat to hadrian | Oleg Grenrus | 2021-03-31 | 2 | -0/+0 |
* | Additionally export asum from Control.Applicative | Oleg Grenrus | 2021-03-30 | 2 | -1/+4 |
* | Allocate Adjustors and mark them readable in two steps | Moritz Angermann | 2021-03-29 | 3 | -1/+20 |
* | Make RULES more robust in GHC.Float | Simon Peyton Jones | 2021-03-28 | 1 | -75/+155 |
* | Bump Win32 to 2.13.0.0 | GHC GitLab CI | 2021-03-26 | 4 | -0/+0 |
* | Add compiler linting to CI | Hécate | 2021-03-25 | 1 | -1/+0 |
* | base: Use mutableByteArrayContents | Ben Gamari | 2021-03-22 | 3 | -13/+11 |
* | Bump template-haskell version to 2.18.0.0wip/T19083 | Ryan Scott | 2021-03-20 | 4 | -2/+2 |
* | Move miscategorized items in template-haskell changelog | Ryan Scott | 2021-03-20 | 1 | -6/+6 |
* | Clean up TBDs in changelog | Ben Gamari | 2021-03-20 | 1 | -1/+7 |
* | Fix fake import in GHC.Exception.Type boot module | Sylvain Henry | 2021-03-20 | 5 | -23/+22 |
* | Add more boundary checks for `rem` and `mod` | John Ericson | 2021-03-20 | 1 | -18/+44 |
* | Generate GHCi bytecode from STG instead of Core and support unboxed | Luite Stegeman | 2021-03-20 | 1 | -1/+1 |
* | [skip ci] Fix 'Ord' documentation inconsistency | Gaël Deest | 2021-03-20 | 1 | -4/+4 |
* | Built-in type families: CharToNat, NatToChar (#19535) | Vladislav Zavialov | 2021-03-17 | 2 | -0/+16 |
* | fromInteger :: Integer -> {Float,Double} now always round to nearest even | ARATA Mizuki | 2021-03-17 | 4 | -21/+56 |
* | [ci] Skip test's on windows that often fail in CI.wip/angerman/stable-windows | Moritz Angermann | 2021-03-16 | 1 | -1/+2 |
* | Implement the UnliftedDatatypes extension | Sebastian Graf | 2021-03-14 | 2 | -1/+3 |