Re: [GHC] #5972: option to suppress (Monomorphic) record selector functions

2012-10-07 Thread GHC
#5972: option to suppress (Monomorphic) record selector functions
-+--
Reporter:  AntC  |   Owner:  igloo   
Type:  feature request   |  Status:  new 
Priority:  normal|   Milestone:  7.8.1   
   Component:  Compiler  | Version:  
Keywords:  records   |  Os:  Unknown/Multiple
Architecture:  Unknown/Multiple  | Failure:  None/Unknown
  Difficulty:  Unknown   |Testcase:  
   Blockedby:|Blocking:  
 Related:|  
-+--
Changes (by igloo):

  * owner:  = igloo
  * milestone:  = 7.8.1


-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/5972#comment:4
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #6010: GHC.Conc.labelThread function can't use Unicode character for thread label.

2012-10-07 Thread GHC
#6010: GHC.Conc.labelThread function can't use Unicode character for thread 
label.
-+--
Reporter:  shelarcy  |   Owner:  igloo   
Type:  bug   |  Status:  new 
Priority:  normal|   Milestone:  7.6.2   
   Component:  libraries/base| Version:  7.4.1   
Keywords:|  Os:  Unknown/Multiple
Architecture:  Unknown/Multiple  | Failure:  None/Unknown
  Difficulty:  Unknown   |Testcase:  
   Blockedby:|Blocking:  
 Related:|  
-+--
Changes (by igloo):

  * owner:  = igloo
  * difficulty:  = Unknown
  * milestone:  = 7.6.2


Comment:

 Thanks for the report. I'll take a look.

-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/6010#comment:2
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #6018: Injective type families

2012-10-07 Thread GHC
#6018: Injective type families
+---
Reporter:  lunaris  |   Owner:  simonpj 
Type:  feature request  |  Status:  new 
Priority:  normal   |   Milestone:  7.8.1   
   Component:  Compiler | Version:  7.4.1   
Keywords:  TypeFamilies, Injective  |  Os:  Unknown/Multiple
Architecture:  Unknown/Multiple | Failure:  None/Unknown
  Difficulty:  Unknown  |Testcase:  
   Blockedby:   |Blocking:  
 Related:   |  
+---
Changes (by igloo):

  * owner:  = simonpj
  * milestone:  = 7.8.1


Comment:

 Simon, I'm no sure what the status of this is, but it looks like your area
 so I'm assigning it to you.

-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/6018#comment:9
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #6026: Unboxed operators have wrong fixity

2012-10-07 Thread GHC
#6026: Unboxed operators have wrong fixity
+---
Reporter:  benl |   Owner:  
   
Type:  bug  |  Status:  new 
   
Priority:  normal   |   Milestone:  7.8.1   
   
   Component:  libraries/base   | Version:  7.4.1   
   
Keywords:   |  Os:  Unknown/Multiple
   
Architecture:  Unknown/Multiple | Failure:  Incorrect result at 
runtime
  Difficulty:  Easy (less than 1 hour)  |Testcase:  
   
   Blockedby:   |Blocking:  
   
 Related:   |  
+---
Changes (by igloo):

  * difficulty:  Unknown = Easy (less than 1 hour)
  * milestone:  = 7.8.1


-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/6026#comment:3
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #6028: warning for cyclic unimplemented defaults

2012-10-07 Thread GHC
#6028: warning for cyclic unimplemented defaults
---+
  Reporter:  lerkok|  Owner:  
  Type:  feature request   | Status:  closed  
  Priority:  normal|  Milestone:  
 Component:  Compiler  |Version:  7.4.1   
Resolution:  wontfix   |   Keywords:  
Os:  Unknown/Multiple  |   Architecture:  Unknown/Multiple
   Failure:  None/Unknown  | Difficulty:  Unknown 
  Testcase:|  Blockedby:  
  Blocking:|Related:  
---+
Changes (by igloo):

  * status:  new = closed
  * difficulty:  = Unknown
  * resolution:  = wontfix


Comment:

 It's not quite that simple. The default implementations are:
 {{{
 negate x= 0 - x
 x - y   = x + negate y
 }}}
 so actually (-) is defined in terms of (+), not negate. For example, if we
 have:
 {{{
 data X = C
 deriving Show

 instance Num X where
 _ + _ = C
 }}}
 then -3 :: X evaluates to C.

 It also wouldn't work for shift:
 {{{
 x `shift`   i | i0   = x `shiftR` (-i)
   | i0   = x `shiftL` i
   | otherwise = x

 x `shiftL`  i = x `shift`  i
 x `shiftR`  i = x `shift`  (-i)
 }}}

 I'm not convinced that there are many instances where this would actually
 help, so I'm closing the ticket.

-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/6028#comment:3
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #6032: HEAD (7.5.20120421) requires RankNTypes for a rank-2 type

2012-10-07 Thread GHC
#6032: HEAD (7.5.20120421) requires RankNTypes for a rank-2 type
-+--
Reporter:  dreixel   |   Owner:  simonpj 
Type:  bug   |  Status:  new 
Priority:  normal|   Milestone:  7.8.1   
   Component:  Compiler  | Version:  7.5 
Keywords:|  Os:  Unknown/Multiple
Architecture:  Unknown/Multiple  | Failure:  None/Unknown
  Difficulty:  Unknown   |Testcase:  
   Blockedby:|Blocking:  
 Related:|  
-+--
Changes (by igloo):

  * owner:  = simonpj
  * milestone:  = 7.8.1


-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/6032#comment:4
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #6040: Adding a type signature changes heap allocation into stack allocation without changing the actual type

2012-10-07 Thread GHC
#6040: Adding a type signature changes heap allocation into stack allocation
without changing the actual type
-+--
Reporter:  tibbe |   Owner:  simonpj 
Type:  bug   |  Status:  new 
Priority:  normal|   Milestone:  7.8.1   
   Component:  Compiler  | Version:  7.4.1   
Keywords:|  Os:  Unknown/Multiple
Architecture:  Unknown/Multiple  | Failure:  None/Unknown
  Difficulty:  Unknown   |Testcase:  
   Blockedby:|Blocking:  
 Related:|  
-+--
Changes (by igloo):

  * owner:  = simonpj
  * milestone:  = 7.8.1


-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/6040#comment:2
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #7301: Got an internal error that caused GHCi to crash

2012-10-07 Thread GHC
#7301: Got an internal error that caused GHCi to crash
---+
Reporter:  guest   |   Owner:
Type:  bug |  Status:  new   
Priority:  normal  |   Milestone:
   Component:  GHCi| Version:  7.4.1 
Keywords:  |  Os:  Windows   
Architecture:  x86_64 (amd64)  | Failure:  GHCi crash
  Difficulty:  Unknown |Testcase:
   Blockedby:  |Blocking:
 Related:  |  
---+
Changes (by igloo):

  * owner:  guest =
  * difficulty:  = Unknown


-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/7301#comment:5
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #7301: Got an internal error that caused GHCi to crash

2012-10-07 Thread GHC
#7301: Got an internal error that caused GHCi to crash
-+--
  Reporter:  guest   |  Owner:
  Type:  bug | Status:  closed
  Priority:  normal  |  Milestone:
 Component:  GHCi|Version:  7.4.1 
Resolution:  worksforme  |   Keywords:
Os:  Windows |   Architecture:  x86_64 (amd64)
   Failure:  GHCi crash  | Difficulty:  Unknown   
  Testcase:  |  Blockedby:
  Blocking:  |Related:
-+--
Changes (by igloo):

  * status:  new = closed
  * resolution:  = worksforme


Comment:

 If this isn't repeatable then there's not much we can do, I'm afraid.

 If you find a way to reproduce it, please reopen or file a new ticket.

-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/7301#comment:6
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #6053: packages in GHC should have different versions from hackage if the packages differ

2012-10-07 Thread GHC
#6053: packages in GHC should have different versions from hackage if the 
packages
differ
---+
  Reporter:  Lemming   |  Owner:  
  Type:  bug   | Status:  closed  
  Priority:  normal|  Milestone:  
 Component:  libraries/unix|Version:  7.5 
Resolution:  invalid   |   Keywords:  
Os:  Unknown/Multiple  |   Architecture:  Unknown/Multiple
   Failure:  None/Unknown  | Difficulty:  Unknown 
  Testcase:|  Blockedby:  
  Blocking:|Related:  
---+
Changes (by igloo):

  * status:  new = closed
  * difficulty:  = Unknown
  * resolution:  = invalid


Comment:

 Currently we don't generally bump package versions in the repositories
 until we're doing a release.

 If we want to change that policy, then we should discuss it on one of the
 mailing lists - a ticket isn't a good place to have that sort of
 discussion.

-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/6053#comment:1
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #6062: TH treats non-functions in function position inconsistently

2012-10-07 Thread GHC
#6062: TH treats non-functions in function position inconsistently
-+--
Reporter:  heisenbug |   Owner:  simonpj 
Type:  bug   |  Status:  new 
Priority:  normal|   Milestone:  7.8.1   
   Component:  Compiler  | Version:  7.5 
Keywords:|  Os:  Unknown/Multiple
Architecture:  Unknown/Multiple  | Failure:  None/Unknown
  Difficulty:  Unknown   |Testcase:  
   Blockedby:|Blocking:  
 Related:|  
-+--
Changes (by igloo):

  * owner:  = simonpj
  * milestone:  = 7.8.1


-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/6062#comment:2
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #6135: Unboxed Booleans

2012-10-07 Thread GHC
#6135: Unboxed Booleans
-+--
Reporter:  benl  |   Owner:  
Type:  feature request   |  Status:  new 
Priority:  normal|   Milestone:  7.8.1   
   Component:  Compiler  | Version:  7.4.1   
Keywords:|  Os:  Unknown/Multiple
Architecture:  Unknown/Multiple  | Failure:  None/Unknown
  Difficulty:  Unknown   |Testcase:  
   Blockedby:|Blocking:  
 Related:|  
-+--
Changes (by igloo):

  * milestone:  = 7.8.1


-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/6135#comment:6
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #5954: Performance regression 7.0 - 7.2 (still in 7.4)

2012-10-07 Thread GHC
#5954: Performance regression 7.0 - 7.2 (still in 7.4)
-+--
Reporter:  simonmar  |   Owner:  simonpj
Type:  bug   |  Status:  new
Priority:  high  |   Milestone:  7.6.2  
   Component:  Compiler  | Version:  7.4.1  
Keywords:|  Os:  Unknown/Multiple   
Architecture:  Unknown/Multiple  | Failure:  Runtime performance bug
  Difficulty:  Unknown   |Testcase: 
   Blockedby:|Blocking: 
 Related:|  
-+--
Changes (by conrad):

 * cc: conrad@… (added)


-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/5954#comment:10
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #5996: fix for CSE

2012-10-07 Thread GHC
#5996: fix for CSE
-+--
Reporter:  michalt   |   Owner:  simonpj
Type:  bug   |  Status:  patch  
Priority:  normal|   Milestone:  7.8.1  
   Component:  Compiler  | Version:  7.5
Keywords:|  Os:  Unknown/Multiple   
Architecture:  Unknown/Multiple  | Failure:  Runtime performance bug
  Difficulty:  Unknown   |Testcase: 
   Blockedby:|Blocking: 
 Related:|  
-+--
Changes (by conrad):

 * cc: conrad@… (added)


-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/5996#comment:6
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


[GHC] #7302: perf-disruptor2-multicast: internal error: evacuate: strange closure type 66562

2012-10-07 Thread GHC
#7302: perf-disruptor2-multicast: internal error: evacuate: strange closure type
66562
---+
 Reporter:  aristidb   |  Owner:
 Type:  bug| Status:  new   
 Priority:  normal |  Component:  Runtime System
  Version:  7.4.2  |   Keywords:
   Os:  MacOS X|   Architecture:  x86_64 (amd64)
  Failure:  Runtime crash  |   Testcase:
Blockedby: |   Blocking:
  Related: |  
---+
 When running the benchmarks for data-ringbuffer (https://github.com/kim
 /data-ringbuffer), I get the following error:

 Benchmark perf-disruptor2-multicast: RUNNING...
 perf-disruptor2-multicast: internal error: evacuate: strange closure type
 66562
 (GHC version 7.4.2 for x86_64_apple_darwin)
 Please report this as a GHC bug:
 http://www.haskell.org/ghc/reportabug
 Benchmark perf-disruptor2-multicast: ERROR


 I use GHC 7.4.2 (64-bit) on OS X 10.7.5. I don't know what is going on at
 all, because data-ringbuffer is not my own code. However, the GHC runtime
 asked me to report this.

-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/7302
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #7295: bad code for Double literals

2012-10-07 Thread GHC
#7295: bad code for Double literals
-+--
Reporter:  jwlato|   Owner:  igloo   
Type:  bug   |  Status:  patch   
Priority:  high  |   Milestone:  7.8.1   
   Component:  Compiler  | Version:  7.6.1   
Keywords:|  Os:  Unknown/Multiple
Architecture:  Unknown/Multiple  | Failure:  None/Unknown
  Difficulty:  Unknown   |Testcase:  
   Blockedby:|Blocking:  
 Related:|  
-+--
Changes (by jwlato):

  * status:  new = patch


Comment:

 I put together a patch along the lines of SPJ's suggestion.  It seems to
 work for this small test and some other code, but I was unable to validate
 it (the validation build doesn't work for me with or without this patch).

-- 
Ticket URL: http://hackage.haskell.org/trac/ghc/ticket/7295#comment:3
GHC http://www.haskell.org/ghc/
The Glasgow Haskell Compiler

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs