- 10 Jul, 2009 7 commits
-
-
Ian Lynagh authored
-
Ian Lynagh authored
-
Ian Lynagh authored
-
Ian Lynagh authored
-
Ian Lynagh authored
-
Ian Lynagh authored
-
Ian Lynagh authored
If we fail to communicate with the IO manager then we print a warning using debugErrLn from the ghc-prim package.
-
- 09 Jul, 2009 2 commits
-
-
Ian Lynagh authored
-
Ian Lynagh authored
-
- 07 Jul, 2009 2 commits
-
-
Ian Lynagh authored
-
Ian Lynagh authored
-
- 06 Jul, 2009 4 commits
-
-
simonpj@microsoft.com authored
These unused imports are detected by the new unused-import code
-
Simon Marlow authored
This only makes a difference when CHARBUF_UTF16 is in use, which it normally isn't. I suspect CHARBUF_UTF16 doesn't currently work for other reasons (CHARBUF_UTF16 was an experiment before I wrote the GHC.IO.Encoding.UTF* codecs), but this patch at least makes it slightly closer to working.
-
Ian Lynagh authored
-
simonpj@microsoft.com authored
Add a ReadP parser that succeeds at the end of input. Very useful!
-
- 05 Jul, 2009 1 commit
-
-
Ian Lynagh authored
We never really supported CLDouble (it was a plain old double underneath), and pretending that we do does more harm than good.
-
- 02 Jul, 2009 1 commit
-
-
Simon Marlow authored
-
- 30 Jun, 2009 1 commit
-
-
Simon Marlow authored
-
- 29 Jun, 2009 2 commits
-
-
kili authored
-
Simon Marlow authored
-
- 26 Jun, 2009 1 commit
-
-
Simon Marlow authored
-
- 25 Jun, 2009 4 commits
-
-
Simon Marlow authored
now that it isn't used on Windows any more.
-
Simon Marlow authored
-
Simon Marlow authored
-
Simon Marlow authored
-
- 24 Jun, 2009 2 commits
-
-
Ian Lynagh authored
Matthias Kilian discovered that iconv_open is #define'd to something else on OpenBSD, so the test needs to include the iconv header.
-
Simon Marlow authored
-
- 23 Jun, 2009 3 commits
-
-
Simon Marlow authored
-
Simon Marlow authored
-
Simon Marlow authored
-
- 22 Jun, 2009 2 commits
-
-
Simon Marlow authored
-
Simon Marlow authored
-
- 18 Jun, 2009 2 commits
-
-
Simon Marlow authored
-
Simon Marlow authored
-
- 20 Jun, 2009 1 commit
-
-
Ian Lynagh authored
It used to only exist if (WORD_SIZE_IN_BITS == 32 || WORD_SIZE_IN_BITS == 64)
-
- 15 Jun, 2009 2 commits
-
-
Ian Lynagh authored
It was breaking the build on Windows. The problem was that we included stdio.h which gave a prototype for some functions (e.g. remove), then the AC_C_CONST meant that we did /* Define to empty if `const' does not conform to ANSI C. */ #define const /**/ and then we included io.h which gave prototypes that, due to const being removed, conflicted with the earlier prototypes.
-
Ian Lynagh authored
-
- 12 Jun, 2009 1 commit
-
-
Duncan Coutts authored
The gcdInt# primop uses gmp internally, even though the interface is just Int#. Since we want to get gmp out of the rts we cannot keep gcdInt#, however it's also a bit odd for the integer package to export something that doesn't actually use Integer in its interface. Using gcdInteger is still not terribly satisfactory aesthetically. However in the short-term it works and it is no slower since gcdInteger calls gcdInt# for the special case of two small Integers.
-
- 20 Jun, 2009 1 commit
-
-
Ian Lynagh authored
-
- 15 Jun, 2009 1 commit
-
-
Ian Lynagh authored
-