- May 18, 2000
-
-
Simon Marlow authored
$(SGML_DOC) can only support one document, so build the Build System Guide by default.
-
Simon Marlow authored
doc-building fix.
-
- May 17, 2000
-
-
Jeff Lewis authored
Defer ambiguity test for class members, so that the test is done *after* we know the (extended) functional dependencies (this is a patch that was mostly carried over from hugs98, but a few lines were out of place).
-
- May 16, 2000
-
-
sven.panne@aedion.de authored
Unbreak util package dependencies for non-M$ platforms
-
Simon Marlow authored
Upd_frame ==> upd_frame (somehow this file got missed from yesterday's commit)
-
Reuben Thomas authored
Put the -c flag in the right place.
-
Reuben Thomas authored
Added a description of SGML comments.
-
Reuben Thomas authored
Added FPTOOLS_CATALOG_FILE
-
Reuben Thomas authored
Made it buildable again; notes on installing DocBook/Jade removed for the moment.
-
Reuben Thomas authored
Added docbook-cheat-sheet
-
Reuben Thomas authored
Added -package concurrent.
-
Reuben Thomas authored
Now that -ddump-* dumps to stdout, the stderr/out files need reorganising.
-
Reuben Thomas authored
Added import PrelIOBase, which is now needed.
-
Reuben Thomas authored
Add util packages to memo tests.
-
Reuben Thomas authored
Package fix: don't have posix as a dependency of util on Windows (where posix doesn't work).
-
Reuben Thomas authored
Much pain in order to get the horrid heap of brokenness that is the DocBook catalog system to work.
-
Simon Marlow authored
oops... better unbreak the driver
-
- May 15, 2000
-
-
Jeff Lewis authored
Fixed missing case in dependency analysis for an implicit param.
-
Keith Wansbrough authored
Adjust treatment of rules in SimplCore to enable a Core pass to alter them if necessary. Use tricks to ensure that the common case (no change) is still efficient.
-
Simon Marlow authored
I lied earlier. _ccall_GC_ should work now.
-
Simon Marlow authored
wibble
-
Simon Marlow authored
fix bug in module initialization
-
Simon Marlow authored
add bLOCK_SIZE
-
Simon Marlow authored
add CurrentTSO, CurrentNursery, bdescr->start and bdescr->free offsets.
-
Simon Marlow authored
forgot a file in the Upd_frame ==> upd_frame commit.
-
Simon Marlow authored
Change the order of building stubs vs. the main .hc file so that one doesn't trample on the other. This stuff is *so* horrible.
-
Simon Marlow authored
callback is a definite via-C test
-
Reuben Thomas authored
Updated to conform to different output.
-
Reuben Thomas authored
Extra rule to make gmp/gmp.dll.
-
Reuben Thomas authored
Removed commented-out out-of-date code from the test, and updated stderr.
-
Simon Marlow authored
The NCG should now support _ccall_GC (i.e. foreign import safe).
-
Simon Marlow authored
remove extra \n in debug message
-
Reuben Thomas authored
Stdout modified in accordance with output (it's the same as io005.hs, which has itself been modified).
-
Reuben Thomas authored
Reversed some formatting changes to make more similar to last version that worked (currently seems not to work on Windows or Linux).
-
Simon Marlow authored
syslib concurrent depends on lang
-
Simon Marlow authored
back out previous misguided commit.
-
- May 14, 2000
-
-
sven.panne@aedion.de authored
Recurse into docbook subdir, too
-
Jeff Lewis authored
Wobble. Fine tuning tcSimplifyAndCheck a bit further (wrt implicit params). The key is that a method that doesn't constrain a local tyvar, but does has implicit params, needs to be reduced further.
-
- May 13, 2000
-
-
Jeff Lewis authored
A clean-up pass on fundeps and implicit params. Haven't yet incorporated changes from Hugs/GHC meeting yet, tho. - Fixed up several places in Type.lhs where IPNotes were probably being incorrectly handled. Strongly suggests a better solution should be implemented for marking implicit params than piggybacking on NoteTys. - tcSimplifyAndCheck was handling implicit params incorrectly (holding on to them when it should have been booting them out to frees). - Improved improvement WRT type signatures (the signature is now taken into account when improving). - Added improvement when matching against local polymorphic types.
-
- May 12, 2000
-
-
sven.panne@aedion.de authored
Fixed bug in integerTo{Word,Int}64zh primops: They used the number of allocated *words* to determine size of an integer, but this is wrong due to normalization. When e.g. two large numbers with different sign, but approximately same absolute value are added, MPN_NORMALIZE cuts down the *size*, but the allocation stays the same. Simple fix: Use size parameter of macros directly. Easier and more correct! :-)
-