summaryrefslogtreecommitdiff
path: root/compiler/utils/OrdList.lhs
Commit message (Collapse)AuthorAgeFilesLines
* compiler: de-lhs utils/Austin Seipp2014-12-031-99/+0
| | | | Signed-off-by: Austin Seipp <austin@well-typed.com>
* Add Output instance for OrdListSimon Peyton Jones2014-08-071-0/+4
|
* Detab modules with tabs on 5 lines or fewerIan Lynagh2013-04-061-8/+1
|
* optimise OrdListSimon Marlow2012-01-251-19/+28
|
* Use -fwarn-tabs when validatingIan Lynagh2011-11-041-0/+7
| | | | | We only use it for "compiler" sources, i.e. not for libraries. Many modules have a -fno-warn-tabs kludge for now.
* Export mapOL from OrdListsimonpj@microsoft.com2009-01-131-1/+1
|
* Fix warnings in utils/OrdListIan Lynagh2008-01-131-10/+3
|
* 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 some invariants to OrdListIan Lynagh2007-08-181-10/+12
| | | | | | | isNilOL is now constant time, rather than possibly having to walk a tree of Two's. Compiling J.hs from trac #1136 now makes 10302 isNilOL calls rather than 50050152. It's gone from 10.8% time to being unlisted (i.e. <= 0.1%).
* Module header tidyup #2Simon Marlow2006-10-111-0/+1
| | | | Push this further along, and fix build problems in the first patch.
* Reorganisation of the source treeSimon Marlow2006-04-071-0/+83
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.