- Jul 03, 2000
-
-
Simon Marlow authored
fix phase ordering for NCG + -split-objs.
-
Simon Marlow authored
Insert split markers properly in the NCG. -split-objs is on its way to working with the NCG.
-
Simon Marlow authored
dead code removal
-
- Jul 02, 2000
-
-
sven.panne@aedion.de authored
Removed -noC flag, which has vanished from the driver
-
sven.panne@aedion.de authored
Don't use addr2Integer for large integral literals anymore, use a Horner schema with numbers in the Int range instead. This improves constant folding, so e.g. (0x87654321 :: Word32) is evaluated at compile time now. In theory we can completely say Good-bye to addr2Integer, but for the time being it's still there. Feel free to nuke it... >:-)
-
sven.panne@aedion.de authored
Don't warn the user about integer overflow during constant folding anymore. It's not done at runtime either, and compilation of completely harmless things like ((124076834 :: Word32) + (2147483647 :: Word32)) yielded a warning.
-
- Jun 30, 2000
-
-
sven.panne@aedion.de authored
Hackily quote -#include options before passing them to mkdependHS
-
sven.panne@aedion.de authored
Remove parentheses around C function/macros names. This is necessary because cpp does *not* replace e.g. (eqForeignObj)(f1,f2) with ((f1)==(f2)) (see PrimOps.h), heaven (or K&R) knows why. OK foreign importing macros is a hack, but GHC seems to depend on it.
-
Simon Marlow authored
- fix copyrights - remove some unused imports - comment formatting fixes
-
Simon Peyton Jones authored
In a CCall, a DynamicTarget has a unique that is used only to generate a uniquely-named typedef. It should not be used when comparing CCalls (e.g. when seeing if interface files have changed). So the main change in this commit is to fix the Eq instance for PrimOp.CCallTarget, but I took the opportunity to clean up the CCallTarget interface a little.
-
Simon Peyton Jones authored
Improve error message
-
Simon Marlow authored
wibble
-
Simon Marlow authored
Use GhcMinVersion to pick the correct cmdline args to build the driver.
-
Simon Marlow authored
Check the version of the installed ghc, and set GhcVersion, GhcMajVersion, GhcMinVersion and GhcPatchLevel make variables.
-
Simon Marlow authored
_Haskell1Version ==> cHaskell1Version
-
- Jun 29, 2000
-
-
sven.panne@aedion.de authored
Added test for Typeable instance
-
sven.panne@aedion.de authored
Fixed buglet in search for ghc-usage.txt
-
sven.panne@aedion.de authored
There is not much point in memoising Integers, so we should better use unary "numbers" (i.e. lists of units) instead
-
Julian Seward authored
Add my wizardly assembly-code basic-block matching program, which is very useful for debugging the native code generator. This is not built by default, because it's totally useless to anyone except the GHC developers. The README file describes how to use and maintain it.
-
Keith Wansbrough authored
Add missing implicit occs relating to list comprehensions in deriving (Ix,Read).
-
Simon Marlow authored
Add test for GNU regex in libc, which we'll use to decide whether to compile our own copy of the library in package text.
-
Simon Marlow authored
sparc needs the TMOVEDIRVS hack too
-
Simon Marlow authored
hi files are now named after the module being compiled, not the original filename (unless of course the user has specified -ohi <blah>).
-
Reuben Thomas authored
Remove /bin/ from /bin/rm to avoid problems with systems where it's elsewhere.
-
- Jun 28, 2000
-
-
Jeff Lewis authored
Make it so that implicit params uniformly print with the `?' at the front of the name. Simon's last big commit re-arranged how interface files were written, and implicit params were suddenly being written without the `?'. This fixes both that bug, and Simon's concern that there were too many different pretty printing functions for implicit params ;-)
-
Simon Marlow authored
This file had version 407 burned into it; the convention is that zero means "don't check the version".
-
Jeff Lewis authored
Bumped VERSION's version as well.
-
Simon Marlow authored
ignore lines beginning with '#' when looking for {-# OPTIONS #-}
-
Jeff Lewis authored
Wave goodbye to hscpp even harder. (erase it from SUBDIR list).
-
Simon Marlow authored
add in the -optl arguments to the linker command line
-
Simon Marlow authored
dumps go to stdout
-
Simon Marlow authored
dumps go to stdout now
-
Simon Marlow authored
Wave goodbye to hscpp, GHC's lexer now understands the '# \d+ \".*\"' output from cpp.
-
Simon Marlow authored
version of ghc-current is now 4.09
-
Simon Marlow authored
add missing default case for Eq (TyClDecl name pat)
-
Julian Seward authored
Partially fix signal (control-C) handling under mingw32. The interpreter can now be interrupted and successfully returns to the Hugs prompt, but only if Hugs was started from cmd.exe and not by bash (!). This is a known bogon with Cygwin, according to Sigbjorn. I still can't get Hugs to ignore other control-C's; instead it acts as if it was asked to exit. Bizarre.
-
- Jun 27, 2000
-
-
Jeff Lewis authored
splitFunTy_maybe was making a special case of implicit params by returning Nothing on a type `noted' as an implicit param. It shouldn't (my bad). It's mostly used downstream of the type checker, where we don't care so much about the difference between implicit and explicit params. The right thing to do is just see thru the NoteTy (i.e. eliminate the special case for IPs). Please merge.
-
Jeff Lewis authored
Cleaned out a handful of unused imports.
-
Reuben Thomas authored
Some initial notes on DLLs. plsmrg
-
Reuben Thomas authored
Replace documentation for dll_Ifs.hi with a note about using -package-name. Please merge.
-