- Aug 02, 1999
-
-
Simon Marlow authored
Add some quick-start instructions.
-
Simon Marlow authored
update a little.
-
Simon Marlow authored
Move the RTS document into the ghc tree where it belongs.
-
Simon Marlow authored
Only require happy if compiling ghc, and ask for version 1.6
-
Simon Marlow authored
add gcdIntegerzh.
-
Simon Marlow authored
Oops, back out most of last revision. Other changes crept in by mistake.
-
Simon Marlow authored
fix a couple of typos in the rules docs.
-
Simon Marlow authored
oops, 'g' and 'h' aren't hex digits.
-
- Jul 31, 1999
- Jul 30, 1999
-
-
Simon Marlow authored
Fix -monly-3-regs problem.
-
Simon Marlow authored
typePrimRep should work on the repType, avoiding foralls etc.
-
- Jul 29, 1999
-
-
sof authored
Removed rather odd quote-removal sed patterns; surely not needed... (they were causing CPP trouble)
-
sof authored
Fixed bug/limitation in command-line handling.
-
sof authored
Recent CPP-related wibblement meant that _WIN32 wasn't defined when the pre-proc was run (cf. -undef usage.) Avoid the use of _WIN32
-
sof authored
Another cosmetic change - avoid desugar warning
-
sof authored
showPrimRep - dead code removal. No need to carry over to 4.04
-
Simon Marlow authored
test for bit shifts by 32.
-
Simon Marlow authored
Document changes to shift operations.
-
Simon Marlow authored
Shift operations where the shift count is greater than the width of the type being shifted are now defined as returning zero (or -1 in the case of a negative integer being shifted right with iShiftRA).
-
Simon Marlow authored
The hscpp saga continues, this time mysterious 2's are appearing in my files.
-
- Jul 28, 1999
-
-
Simon Peyton Jones authored
Improve error msg in tcPolyExpr; Simon pls merge into release
-
Simon Marlow authored
- Use explicit file modes when installing binaries & scripts (not essential, but someone complained about it). - Use $(INSTALL_SCRIPT) for scripts
-
Simon Marlow authored
Sigh, another go at getting #line directives right.
-
Simon Marlow authored
Allow unboxed tuple components to have polymorphic types.
-
- Jul 27, 1999
-
-
Simon Marlow authored
Sigh, didn't work in the cpp, !literate case.
-
Simon Marlow authored
oops, debugging code committed by mistake.
-
Simon Marlow authored
Fix filenames in {-# LINE #-} directives when using both unlit and hscpp (I think).
-
Simon Marlow authored
fix typo in hppa1.1 support.
-
sof authored
remove spurious ^M's
-
Simon Marlow authored
add unofficial/undocumented function: mkWeakIORef :: IORef a -> IO () -> IO (Weak (IORef a)) for weak pointers to IORefs. This avoids some of the problems with inlining disturbing the semantics of mkWeak by making the weak key point to the primitive MutVar instead of the box.
-
Simon Marlow authored
Allow mkWeak# to take an unlifted type as the key argument. The intention is that boxed-but-unlifted types can be used as keys, not unlifted types in general but there's no way to enforce this at the moment.
-
Simon Marlow authored
+RTS -s<blah> ==> +RTS -S<blah> for -Rghc-timing. The former now gives only summary statistics, as advertised.
-
sof authored
If calling a 'foreign export'ed Haskell function resulted in an error, localise the error by supplying the module name as well as the name of the function.
-
sof authored
Improve the UI a little for modules contain 'foreign export' declarations - no longer demand that module name == (basename filename)
-
Simon Marlow authored
Something is very screwy here. This file does not appear to have been removed, but it doesn't have any tags beyond 2.04.
-
Simon Marlow authored
Back out yesterday's change to Parser.y, and throw out illegal do expressions in the renamer instead. It turned out to be hard to get the optional semicolons right in the grammar at the same time as checking that the last statement is an expression.
-
Simon Peyton Jones authored
Add a bit more info about hi-boot files
-
Simon Peyton Jones authored
Do a more correct job of explicit for-alls in types
-