Daily report for head

2007-10-30 Thread BuildBot Collator
Build results: x86-64 Linux head: pass gabor head:pass kahl G5 Gentoo Linux head: fail (failed stage2) phil P4 SuSE Linux head: pass tnaur x86 Linux head: pass x86-64 Linux head unreg: pass Old unexpected test passes: arrowrun004 1 macgyver PPC OSX head New

Daily report for stable

2007-10-30 Thread BuildBot Collator
Build results: kahl G5 Gentoo Linux stable: pass tnaur PPC OSX stable:lost x86 Windows stable: pass x86 Windows stable fast: pass pass pass pass pass pass fail (failed stage2) x86-64 Linux stable: pass Old unexpected test passes: GMapAssoc1 macgyver PPC OSX s

patch applied (ghc-6.8/ghc): MERGED: fix installation of haddock.css and friends

2007-10-30 Thread Ian Lynagh
Tue Oct 30 18:13:00 PDT 2007 Ian Lynagh <[EMAIL PROTECTED]> * MERGED: fix installation of haddock.css and friends Simon Marlow <[EMAIL PROTECTED]>**20071029120732 M ./libraries/Makefile -3 +3 ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://

patch applied (ghc-6.8/ghc): Fix LiberateCase

2007-10-30 Thread Ian Lynagh
Mon Oct 29 10:06:20 PDT 2007 [EMAIL PROTECTED] * Fix LiberateCase Merge to STABLE please Liberate case was being far too gung-ho about what to specialise. This bug only showed up when a recursive function 'f' has a nested recursive function 'g', where 'g' calls 'f' (as well a

patch applied (ghc-6.8/ghc): Improve documentation of orphan instances (thanks to Adrian Hey)

2007-10-30 Thread Ian Lynagh
Mon Oct 29 09:25:05 PDT 2007 [EMAIL PROTECTED] * Improve documentation of orphan instances (thanks to Adrian Hey) Please push to stable branch Simon M ./docs/users_guide/flags.xml -7 +3 M ./docs/users_guide/separate_compilation.xml -18 +45 M ./docs/users_guide/using.xml

patch applied (ghc-6.8/ghc): added foldUFM_Directly, used where appropriate, killed all warnings

2007-10-30 Thread Ian Lynagh
Sat Sep 15 12:06:17 PDT 2007 Norman Ramsey <[EMAIL PROTECTED]> * added foldUFM_Directly, used where appropriate, killed all warnings M ./compiler/utils/UniqFM.lhs -45 +53 ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mailman

patch applied (ghc-6.8/ghc): Substantial improvement to the interaction of RULES and inlining

2007-10-30 Thread Ian Lynagh
Mon Oct 29 04:10:56 PDT 2007 [EMAIL PROTECTED] * Substantial improvement to the interaction of RULES and inlining (Merge to 6.8 branch after testing.) There were a number of delicate interactions between RULEs and inlining in GHC 6.6. I've wanted to fix this for a long time, a

patch applied (ghc-6.8/ghc): small reworking of the loop-breaker-choosing algorithm

2007-10-30 Thread Ian Lynagh
Tue Oct 9 07:53:05 PDT 2007 Simon Marlow <[EMAIL PROTECTED]> * small reworking of the loop-breaker-choosing algorithm Previously inline candidates were given higher preference as non-loop-breakers than constructor applications, but the reason for this was that making a wrapper into a loop

patch applied (ghc-6.8/ghc): Add a missing import when __GLASGOW_HASKELL__ < 603

2007-10-30 Thread Ian Lynagh
Tue Oct 30 17:55:34 PDT 2007 Ian Lynagh <[EMAIL PROTECTED]> * Add a missing import when __GLASGOW_HASKELL__ < 603 M ./compiler/nativeGen/RegSpillClean.hs +4 ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mailman/listinfo/cvs-

patch applied (ghc-6.8/ghc): Fix freeHaskellFunctionPtr for Darwin/i386

2007-10-30 Thread Ian Lynagh
Mon Oct 29 13:26:36 PDT 2007 Aaron Tomb <[EMAIL PROTECTED]> * Fix freeHaskellFunctionPtr for Darwin/i386 M ./rts/Adjustor.c -1 +1 ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mailman/listinfo/cvs-ghc

patch applied (ghc-6.8/ghc): Replace "tail -n +2" with "sed 1d", as Solaris doesn't understand the former

2007-10-30 Thread Ian Lynagh
Tue Oct 30 17:12:18 PDT 2007 Ian Lynagh <[EMAIL PROTECTED]> * Replace "tail -n +2" with "sed 1d", as Solaris doesn't understand the former M ./docs/man/Makefile -1 +2 ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mailman/lis

Re: Haddock source options

2007-10-30 Thread David Waern
>>> Hi, >>> >>> Haddock options in source files can look either like this: >>> >>> -- # prune, hide, etc >>> >>> Or like this: >>> >>> {-# prune, hide, etc #-} >>> >>> Since the second one was hard to support in GHC, and because I wanted >>> to >>> implement something that fit better with the GHC s

Re: Haddock source options

2007-10-30 Thread David Waern
>> Hi, >> >> Haddock options in source files can look either like this: >> >> -- # prune, hide, etc >> >> Or like this: >> >> {-# prune, hide, etc #-} >> >> Since the second one was hard to support in GHC, and because I wanted to >> implement something that fit better with the GHC system of >> opti

Re: darcs patch: Fix freeHaskellFunctionPtr for Darwin/i386

2007-10-30 Thread Don Stewart
atomb: > This patch fixes the preprocessor directives surrounding the Darwin/ > i386 portion of freeHaskellFunctionPtr, which had used the wrong > symbol (x86_HOST_ARCH instead of i386_HOST_ARCH), causing occasional > FFI problems. This patch is against the 6.8 branch, but will probably > ap

darcs patch: Fix freeHaskellFunctionPtr for Darwin/i386

2007-10-30 Thread Aaron Tomb
This patch fixes the preprocessor directives surrounding the Darwin/ i386 portion of freeHaskellFunctionPtr, which had used the wrong symbol (x86_HOST_ARCH instead of i386_HOST_ARCH), causing occasional FFI problems. This patch is against the 6.8 branch, but will probably apply to HEAD, as w

Re: Haddock source options

2007-10-30 Thread David Waern
> Hi, > > Haddock options in source files can look either like this: > > -- # prune, hide, etc > > Or like this: > > {-# prune, hide, etc #-} > > Since the second one was hard to support in GHC, and because I wanted to > implement something that fit better with the GHC system of > options/pragmas,

Haddock source options

2007-10-30 Thread David Waern
Hi, Haddock options in source files can look either like this: -- # prune, hide, etc Or like this: {-# prune, hide, etc #-} Since the second one was hard to support in GHC, and because I wanted to implement something that fit better with the GHC system of options/pragmas, I implemented support

Re: validate fails

2007-10-30 Thread Manuel M T Chakravarty
Simon Marlow: Manuel M T Chakravarty wrote: Trying to validate the HEAD on MacOS 10.5 fails with ../compiler/ghc-inplace -optc-Werror -optc-Wall -optc-W -optc- Wstrict-prototypes -optc-Wmissing-prototypes -optc-Wmissing- declarations -optc-Winline -optc-Waggregate-return -optc-I../ includes -

patch applied (ghc): Fix warning in OSMem for darwin

2007-10-30 Thread chak
Tue Oct 30 06:30:03 PDT 2007 Manuel M T Chakravarty <[EMAIL PROTECTED]> * Fix warning in OSMem for darwin M ./rts/posix/OSMem.c -1 +1 ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mailman/listinfo/cvs-ghc

RE: patch applied (ghc): FIX BUILD: a glitch in the new rules and inlining stuff

2007-10-30 Thread Simon Peyton-Jones
I've pushed this patch eagerly because the HEAD was broken. I'm still validating, but I think it's good. S | -Original Message- | From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Simon Peyton Jones | Sent: 30 October 2007 11:45 | To: cvs-ghc@haskell.org | Subject: patch ap

Re: validate fails

2007-10-30 Thread Simon Marlow
Manuel M T Chakravarty wrote: Trying to validate the HEAD on MacOS 10.5 fails with ../compiler/ghc-inplace -optc-Werror -optc-Wall -optc-W -optc-Wstrict-prototypes -optc-Wmissing-prototypes -optc-Wmissing-declarations -optc-Winline -optc-Waggregate-return -optc-I../includes -optc-I. -optc-Ipa

patch applied (ghc): FIX BUILD: a glitch in the new rules and inlining stuff

2007-10-30 Thread Simon Peyton Jones
Tue Oct 30 04:38:57 PDT 2007 [EMAIL PROTECTED] * FIX BUILD: a glitch in the new rules and inlining stuff Don't re-add the worker info to a binder until completeBind. It's not needed in its own RHS, and it may be replaced, via the substitution following postInlineUnconditionally. (F

validate fails

2007-10-30 Thread Manuel M T Chakravarty
Trying to validate the HEAD on MacOS 10.5 fails with ../compiler/ghc-inplace -optc-Werror -optc-Wall -optc-W -optc-Wstrict- prototypes -optc-Wmissing-prototypes -optc-Wmissing-declarations -optc- Winline -optc-Waggregate-return -optc-I../includes -optc-I. -optc- Iparallel -optc-Ism -optc-DCOMP

patch applied (testsuite): Update output (comments added to source file)

2007-10-30 Thread Simon Peyton Jones
Tue Oct 30 04:10:32 PDT 2007 [EMAIL PROTECTED] * Update output (comments added to source file) M ./tests/ghc-regress/typecheck/should_compile/FD1.stderr -7 +7 ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mailman/listinfo/cv

[nightly] 29-Oct-2007 build of STABLE on i386-unknown-linux (cam-02-unx.europe.corp.microsoft.com)

2007-10-30 Thread GHC Build Reports
Build description = STABLE on i386-unknown-linux (cam-02-unx.europe.corp.microsoft.com) Build location= /playpen/ghc/nightly/STABLE-cam-02-unx Build config file = /home/simonmar/nightly/site/msrc/conf-STABLE-cam-02-unx Nightly build started on cam-02-unx at Mon Oct 29 19:00:00 GMT 2007.

[nightly] 29-Oct-2007 build of HEAD on i386-unknown-linux (cam-02-unx.europe.corp.microsoft.com)

2007-10-30 Thread GHC Build Reports
Build description = HEAD on i386-unknown-linux (cam-02-unx.europe.corp.microsoft.com) Build location= /playpen/ghc/nightly/HEAD-cam-02-unx Build config file = /home/simonmar/nightly/site/msrc/conf-HEAD-cam-02-unx Nightly build started on cam-02-unx at Mon Oct 29 19:30:02 GMT 2007. checki