- Aug 18, 2000
-
-
Marcin 'Qrczak' Kowalczyk authored
Unused Prelude import check moved to a better place.
-
Marcin 'Qrczak' Kowalczyk authored
Never say: "Warning: Module `Prelude' is imported, but nothing from it is used"
-
Marcin 'Qrczak' Kowalczyk authored
Output -#include options before packages' C includes, to be able to -#include a file that #defines e.g. _XOPEN_SOURCE and #includes a C header depending on _XOPEN_SOURCE that is also included from Stg.h. First inclusion of this header should be after the #define.
-
- Aug 17, 2000
-
-
Simon Marlow authored
Replace a zipEqual with a zip in tcPat when checking a record pat. The former version caused a panic with DEBUG on if a record pattern was used with a non-record constructor.
-
Simon Marlow authored
Add some tests for unboxing strict record fields.
-
Simon Marlow authored
unboxing strict fields, bug #2: the unfolding in a record selector id was completely bogus when -funbox-strict-fields was in effect.
-
Reuben Thomas authored
Sorry, that's "RTS hooks work under Windows when the *program* is built statically, not the compiler".
-
Reuben Thomas authored
Revised note about RTS hooks under Windows: they should still work for statically-built compilers.
-
Reuben Thomas authored
Added a note about RTS hooks not working under Windows with DLLs.
-
Simon Marlow authored
remove unused imports.
-
Reuben Thomas authored
barf when a DLLized RTS tries to allocate a 2nd Windows monster block; is_heap_alloced stops working at this point. No problem for the static build.
-
Reuben Thomas authored
Changed HAVE_WIN32_DLL_SUPPORT to ENABLE_WIN32_DLL_SUPPORT so that the relevant bits are only used in the dynamic Windows build (as they should be).
-
Simon Marlow authored
unboxing strict fields, bug #1: desugaring a record pattern used the rep args rather than the original args when expanding the pattern into a ConPat.
-
Simon Marlow authored
Complete the removal of tso->splim (these are the NCG bits).
-
Reuben Thomas authored
This test used a library module that no longer exists (Printf).
-
Reuben Thomas authored
Test no longer applicable (fails for non-typechecking reasons: multiple definition of main)
-
Reuben Thomas authored
Updated error message.
-
- Aug 16, 2000
-
-
Reuben Thomas authored
Change use of HAVE_WIN32_DLL_SUPPORT to ENABLE_WIN32_DLL_SUPPORT, to stop things going horribly wrong with static linking on win32.
-
Simon Marlow authored
Don't just pick the back edges ({-# SOURCE #-} imports) when collecting the list of imports for module initialisation. It's entirely possible that a module is only reachable from Main via {-# SOURCE #-} imports.
-
- Aug 15, 2000
-
-
Simon Marlow authored
oops, revert part of previous commit that sneaked in by accident
-
Simon Marlow authored
Make the TSO structure shorter by 2 words: - remove splim. It was always equal to &(tso->stack) + RESERVED_STACK_WORDS. - make two enum fields 16 bits each instead of 32.
-
Simon Marlow authored
this test had random end conditions; make it a bit more deterministic
-
Simon Marlow authored
fail properly in ghcExit, now that we don't call error any more.
-
Simon Marlow authored
Minor cleanups to a few closure types: we don't use StgPtr in Closures.h anymore.
-
Reuben Thomas authored
Add -fvia-C to cg026 (which it needs).
-
Reuben Thomas authored
Updated error message for "Compilation had errors" so as not to break tests.
-
- Aug 10, 2000
-
-
Simon Marlow authored
remove unused imports
-
Reuben Thomas authored
Reinstated isLocallyDefinedName test in isDllName, because nameModule can't cope with local names.
-
- Aug 09, 2000
-
-
Reuben Thomas authored
Changed use of error for "Compilation failed" message to hPutStr stderr; seemed better to SWM, and stops error messages being different on Windows where RTS hooks don't work with DLLs.
-
Reuben Thomas authored
Changes to Windows docs; specifically, remove advice to use -static.
-
Reuben Thomas authored
Updates to Windows docs to cope with changes in new Cygwin and head of tree GHC.
-
Reuben Thomas authored
Clarified remarks about memory usage, and zapped bits specifically about resources required to compile GHC (this is not ANNOUNCE material).
-
Simon Marlow authored
remove unused import
-
Simon Marlow authored
remove unused imports
-
Simon Marlow authored
avoid some repetition of filenames in the primop rules.
-
Simon Marlow authored
build genprimopcode at boot time.
-
Reuben Thomas authored
werid -> weird
-
Simon Marlow authored
make this compile with pre-4.09 GHCs.
-
- Aug 08, 2000
-
-
Reuben Thomas authored
Fix so that libHS_imp_stub is made before HSrts.dll.
-
Reuben Thomas authored
Changed DLL_IMPORT_RTS to DLL_IMPORT (I had it the wrong way around).
-