| Commit message (Expand) | Author | Age | Files | Lines |
* | Use Int# primops in `Bits Int{8,16,32,64}` instances | Sylvain Henry | 2019-12-03 | 1 | -16/+16 |
* | Update Trac ticket URLs to point to GitLab | Ryan Scott | 2019-03-15 | 1 | -1/+1 |
* | Compile count{Leading,Trailing}Zeros to corresponding x86_64 instructions und... | Dmitry Ivanov | 2019-01-30 | 1 | -0/+13 |
* | Revert "Batch merge" | Ben Gamari | 2019-01-30 | 1 | -13/+0 |
* | Batch merge | Ben Gamari | 2019-01-30 | 1 | -0/+13 |
* | Error out of invalid Int/Word bit shifts | Alec Theriault | 2019-01-23 | 1 | -10/+30 |
* | Remove OPTIONS_HADDOCK hide in favour for not-home | Adam Sandberg Eriksson | 2019-01-06 | 1 | -1/+1 |
* | Built-in Natural literals in Core | Sylvain Henry | 2018-06-15 | 1 | -0/+30 |
* | Add @since annotations to base instances | Seraphime Kirkovski | 2016-06-06 | 1 | -0/+56 |
* | Defer inlining of Ord methods | Ben Gamari | 2016-03-30 | 1 | -13/+87 |
* | base: Fix GHC.Word and GHC.Int on 32-bit platforms | Ben Gamari | 2016-03-25 | 1 | -2/+2 |
* | Defer inlining of Eq for primitive types | Ben Gamari | 2016-03-24 | 1 | -8/+66 |
* | base: drop redundant Typeable derivings | Herbert Valerio Riedel | 2015-03-07 | 1 | -8/+6 |
* | Comments only | Simon Peyton Jones | 2014-12-08 | 1 | -4/+3 |
* | Refactor module imports in base | Herbert Valerio Riedel | 2014-10-19 | 1 | -1/+0 |
* | `M-x delete-trailing-whitespace` & `M-x untabify`... | Herbert Valerio Riedel | 2014-08-31 | 1 | -4/+4 |
* | Add `FiniteBits(count{Leading,Trailing}Zeros)` | Herbert Valerio Riedel | 2014-08-31 | 1 | -0/+13 |
* | Replace DeriveDataTypeable by AutoDeriveTypeable | Herbert Valerio Riedel | 2014-05-27 | 1 | -1/+1 |
* | Use not# rather than (`xor#` (-1)) for complement | Simon Peyton Jones | 2014-03-13 | 1 | -3/+3 |
* | Remove obsolete pre-Haddock-2 `#hide` pragmas | Herbert Valerio Riedel | 2013-09-23 | 1 | -1/+0 |
* | Follow changes in comparison primops (see #6135) | Jan Stolarek | 2013-09-18 | 1 | -34/+34 |
* | We need NegativeLiterals for GHC.Int or we get warnings | Ian Lynagh | 2013-07-31 | 1 | -1/+1 |
* | Re-jig SOURCE imports | Simon Peyton Jones | 2013-06-06 | 1 | -7/+7 |
* | Change rules for RealFrac methods to pointfree, so that they can also fire in... | Daniel Fischer | 2013-02-13 | 1 | -48/+48 |
* | Fix #7233: avoid overflow in divInt64# | Simon Marlow | 2012-10-25 | 1 | -8/+16 |
* | Add bitSizeMaybe to Bits, and add FiniteBits class | Ian Lynagh | 2012-09-23 | 1 | -5/+23 |
* | Use Word literals directly, rather than converting Int literals | Ian Lynagh | 2012-05-21 | 1 | -5/+5 |
* | Add CTYPE pragmas for GHC types | Ian Lynagh | 2012-02-16 | 1 | -5/+5 |
* | Define a divModInt function that only does 1 division | Ian Lynagh | 2012-02-14 | 1 | -7/+15 |
* | Use the new quotRemInt# primop | Ian Lynagh | 2012-02-14 | 1 | -8/+16 |
* | Remove Num superclass of Bits Add and export bitDefault, testBitDefault and p... | Bas van Dijk | 2012-01-14 | 1 | -1/+20 |
* | Add unsafeShift to Data.Bits | Johan Tibell | 2011-11-08 | 1 | -0/+11 |
* | Update base for latest Safe Haskell. | David Terei | 2011-10-25 | 1 | -0/+1 |
* | FIX BUILD on 32-bits | Daniel Fischer | 2011-08-27 | 1 | -1/+1 |
* | Trailing Whitespace | Daniel Fischer | 2011-08-27 | 1 | -9/+9 |
* | Add Data.Bits.popCount | Johan Tibell | 2011-08-25 | 1 | -0/+6 |
* | Drop bitrotted code for < 32-bit platforms | Johan Tibell | 2011-08-24 | 1 | -149/+0 |
* | Data.Bits: specialise shift[LR] for instance Bits | Liyang HU | 2011-07-28 | 1 | -0/+12 |
* | Follow toInt# -> integerToInt renaming | Ian Lynagh | 2011-07-23 | 1 | -4/+4 |
* | Fix quoteRem, rem, divMod and mod definitions | Ian Lynagh | 2011-06-26 | 1 | -36/+68 |
* | SafeHaskell: Added SafeHaskell to base | David Terei | 2011-06-18 | 1 | -2/+3 |
* | Move Eq and Ord for Int from GHC.Base to GHC.Classes, so they are not longer ... | Jose Pedro Magalhaes | 2011-05-03 | 1 | -25/+1 |
* | Merge branch 'master' of http://darcs.haskell.org/packages/base into ghc-gene... | Jose Pedro Magalhaes | 2011-05-02 | 1 | -36/+160 |
|\ |
|
| * | Add a note about the definition of quot etc | Ian Lynagh | 2011-04-30 | 1 | -36/+161 |
| * | Performance improvement for division: got rid of an unnecessary branching in ... | Denys Rtveliashvili | 2011-04-30 | 1 | -36/+36 |
* | | Comment the generics stuff instances in GHC.Int, for now. | Jose Pedro Magalhaes | 2011-05-02 | 1 | -2/+3 |
* | | Add instances for basic types of the new generic deriving mechanism. | Jose Pedro Magalhaes | 2011-04-29 | 1 | -1/+27 |
|/ |
|
* | Use explicit language extensions & remove extension fields from base.cabal | simonpj@microsoft.com | 2011-01-28 | 1 | -2/+1 |
* | Add LANGUAGE BangPatterns to modules that use bang patterns | simonpj@microsoft.com | 2010-11-12 | 1 | -0/+1 |
* | FIX #1434 | Daniel Fischer | 2010-10-20 | 1 | -3/+127 |