summaryrefslogtreecommitdiff
path: root/compiler/utils/Encoding.hs
Commit message (Collapse)AuthorAgeFilesLines
* SafeHaskell: Make base GHC.* modules untrustedDavid Terei2011-06-171-5/+1
|
* SafeHaskell: Update to work with safe baseDavid Terei2011-06-171-0/+4
|
* Add LANGUAGE BangPatterns to modules that use themsimonpj@microsoft.com2010-11-121-0/+1
|
* Trim unused imports detected by new unused-import codesimonpj@microsoft.com2009-07-061-1/+0
|
* Require a bang pattern when unlifted types are where/let bound; #3182Ian Lynagh2009-04-241-8/+8
| | | | | For now we only get a warning, rather than an error, because the alex and happy templates don't follow the new rules yet.
* z-encode digits at the start of a symbol name; fixes trac #2997Ian Lynagh2009-02-271-9/+16
| | | | | | | | Digits already have a couple of meanings in z-encoding (Z3T is a tuple, and z123U is a unicode character), so we encode digits as unicode characters to avoid trying to squeeze in another meaning. Also removed a little GHC < 6.2 compatibility hack.
* Whitespace onlyIan Lynagh2009-02-271-143/+143
|
* Move some flags from the Makefile into module pragmasIan Lynagh2008-07-101-0/+4
|
* Don't import FastString in HsVersions.hIan Lynagh2008-03-291-1/+0
| | | | Modules that need it import it themselves instead.
* Fixed warnings in utils/EncodingTwan van Laarhoven2008-01-261-14/+9
|
* Move OPTIONS pragmas above commentsIan Lynagh2007-09-211-7/+7
| | | | Fixes building with -Werror (i.e. validate) and GHC < 6.6
* Fix CodingStyle#Warnings URLsIan Lynagh2007-09-041-1/+1
|
* Use OPTIONS rather than OPTIONS_GHC for pragmasIan Lynagh2007-09-031-2/+2
| | | | | | | Older GHCs can't parse OPTIONS_GHC. This also changes the URL referenced for the -w options from WorkingConventions#Warnings to CodingStyle#Warnings for the compiler modules.
* Add {-# OPTIONS_GHC -w #-} and some blurb to all compiler modulesIan Lynagh2007-09-011-0/+7
|
* add a type signaturesimonmar@microsoft.com2006-06-011-0/+1
|
* avoid versionitis in Numeric.showHex (should fix tcrun007)Simon Marlow2006-04-111-3/+6
|
* Reorganisation of the source treeSimon Marlow2006-04-071-0/+373
Most of the other users of the fptools build system have migrated to Cabal, and with the move to darcs we can now flatten the source tree without losing history, so here goes. The main change is that the ghc/ subdir is gone, and most of what it contained is now at the top level. The build system now makes no pretense at being multi-project, it is just the GHC build system. No doubt this will break many things, and there will be a period of instability while we fix the dependencies. A straightforward build should work, but I haven't yet fixed binary/source distributions. Changes to the Building Guide will follow, too.