[GHC] #10870: PPC.Ppr: Shift by 32 bits is not allowed.

#10870: PPC.Ppr: Shift by 32 bits is not allowed. -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 (CodeGen) | Keywords: | Operating System: Unknown/Multiple Architecture: powerpc | Type of failure: None/Unknown Test Case: | Blocked By: Blocking: | Related Tickets: Differential Revisions: | -------------------------------------+------------------------------------- Hi, when compiling `vector-algorithms` on powerpc, I get {{{ [ 7 of 10] Compiling Data.Vector.Algorithms.Tim ( src/Data/Vector/Algorithms/Tim.hs, dist- ghc/build/Data/Vector/Algorithms/Tim.o ) ghc: panic! (the 'impossible' happened) (GHC version 7.10.2 for powerpc-unknown-linux): PPC.Ppr: Shift by 32 bits is not allowed. }}} I do not get this error on other 32bit architectures. The offending code seems to be {{{ minrun :: Int -> Int minrun n0 = (n0 `unsafeShiftR` extra) + if (lowMask .&. n0) > 0 then 1 else 0 where -- smear the bits down from the most significant bit !n1 = n0 .|. unsafeShiftR n0 1 !n2 = n1 .|. unsafeShiftR n1 2 !n3 = n2 .|. unsafeShiftR n2 4 !n4 = n3 .|. unsafeShiftR n3 8 !n5 = n4 .|. unsafeShiftR n4 16 !n6 = n5 .|. unsafeShiftR n5 32 }}} The call to panic was introduced by Erik in the fix for #5900. Is the code at fault, or the compiler? -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Revisions: ---------------------------------------+---------------------------------- Comment (by erikd): Maybe adding the panic was the wrong thing to do there. On 32 bit PowerPC, a right shift of 32 bits should just result in zero. However, the PowerPC codegen now supports 64 bit PowerPC, so we need to be careful. -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:1 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Revisions: ---------------------------------------+---------------------------------- Changes (by trommler): * cc: trommler (added) -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:2 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Revisions: ---------------------------------------+---------------------------------- Comment (by erikd): I'm currently working on the ghc-7.10 branch because the master branch currently does not compile on PowerPC due to #7830. I have a test program: {{{ import Data.Bits import Data.Int import Data.Word shift32R :: (Bits a, Num a) => a -> a shift32R x = unsafeShiftR x 32 main :: IO () main = do print $ map shift32R [ 123456, 0x7fffffff :: Int ] print $ map shift32R [ 123456, 0xffffffff :: Word ] print $ map shift32R [ 123456678, 123456678123456678 :: Int64 ] print $ map shift32R [ 123456678, 123456678123456678 :: Word64 ] }}} and I have a fix that seems to work (PowerPC output is same as for x86_64 and Arm), but the compiler prints 14 identical instances of the warning: {{{ WARNING: file compiler/simplCore/SimplEnv.hs, line 530 showl_a1O5 }}} -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:3 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Revisions: ---------------------------------------+---------------------------------- Comment (by erikd): Recompiled from scratch and the weird warning was gone. -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:4 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Changes (by erikd): * differential: => Phab:D1322 -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:5 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed.
---------------------------------------+----------------------------------
Reporter: nomeata | Owner:
Type: bug | Status: new
Priority: normal | Milestone:
Component: Compiler (CodeGen) | Version: 7.10.2
Resolution: | Keywords:
Operating System: Unknown/Multiple | Architecture: powerpc
Type of failure: None/Unknown | Test Case:
Blocked By: | Blocking:
Related Tickets: | Differential Rev(s): Phab:D1322
Wiki Page: |
---------------------------------------+----------------------------------
Comment (by Erik de Castro Lopo

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: merge Priority: normal | Milestone: Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Changes (by erikd): * status: new => merge -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:7 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: merge Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Changes (by erikd): * milestone: => 7.10.3 -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:8 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: merge Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Changes (by erikd): * Attachment "0001-PPC-Fix-right-shift-by-32-bits-10870.patch" added. Patch for 7.10 branch -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: merge Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Comment (by erikd): The commit in the `master` branch doesn't apply to the `7.10` branch because of all the `powerpc64el` work in `master`. I have therefore attached a `7.10` specific patch. -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:9 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: merge Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Comment (by trommler): Replying to [comment:9 erikd]:
The commit in the `master` branch doesn't apply to the `7.10` branch because of all the `powerpc64el` work in `master`. Speaking of 64-bit: I suppose I should implement shifts by 64 bit in a similar fashion for 64-bit PowerPC. I'll create a new ticket for that.
-- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:10 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: closed Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:11 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: new Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Changes (by nomeata): * status: closed => new * resolution: fixed => Comment: Sorry to be the bringer of bad news, but this seems to be still occurring in 7.10.3-rc1: https://buildd.debian.org/status/fetch.php?pkg=haskell-vector- algorithms&arch=powerpc&ver=0.7.0.1-2&stamp=1446804253 -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:12 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: new Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Changes (by trommler): * Attachment "0001-PPC-nativeGen-fix-shift-right-arithmetic-31-bit.patch" added. ...and for arithmetic right shifts -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: infoneeded Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Changes (by trommler): * status: new => infoneeded Comment: Replying to [comment:12 nomeata]:
Sorry to be the bringer of bad news, but this seems to be still occurring in 7.10.3-rc1:
https://buildd.debian.org/status/fetch.php?pkg=haskell-vector- algorithms&arch=powerpc&ver=0.7.0.1-2&stamp=1446804253 Can you try the above patch (0001-PPC-nativeGen-fix-shift-right- arithmetic-31-bit.patch)?
I could only eye-ball the code (no 32 bit installation here), but I am pretty sure this is the only case left that triggers the panic you are seeing. -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:13 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: infoneeded Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Changes (by trommler): * Attachment "0001-PPC-nativeGen-fix-shift-right-arithmetic-31-bit.patch" added. ...and for arithmetic right shifts -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: infoneeded Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Changes (by trommler): * Attachment "0001-PPC-nativeGen-fix-shift-right-arithmetic-31-bit.patch" added. ...and for arithmetic right shifts -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: infoneeded Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Comment (by nomeata): Thanks! I almost kicked off a full ghc package upload to Debian, but I better wait until you have reached the final version of your patch. (Interesting that trac does not display your updates to the patch, this might be very confusion when people talk about different instances of a patch.) -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:14 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

Thanks! I almost kicked off a full ghc package upload to Debian, but I better wait until you have reached the final version of your patch. (Interesting that trac does not display your updates to the patch, this might be very confusion when people talk about different instances of a
#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: infoneeded Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Comment (by trommler): Replying to [comment:14 nomeata]: patch.) Sorry about that! I forgot to refresh the patch and uploaded an old version that did not even compile three times. I used the replace attachment option for each upload. -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:15 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

Replying to [comment:14 nomeata]:
Thanks! I almost kicked off a full ghc package upload to Debian, but I better wait until you have reached the final version of your patch. (Interesting that trac does not display your updates to the patch, this might be very confusion when people talk about different instances of a
#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: merge Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Changes (by trommler): * status: infoneeded => merge Comment: Replying to [comment:15 trommler]: patch.)
Sorry about that! I forgot to refresh the patch and uploaded an old version that did not even compile three times. I used the replace attachment option for each upload. The patch is good. I verified on openSUSE build service.
I looked at HEAD again and the code there is not correct for negative numbers. I will post a fix for HEAD on Phab shortly (I am still validating). Meanwhile `0001-PPC-nativeGen-fix-shift-right-arithmetic-31-bit.patch` can be merged into ghc-7.10. Once merged, please reopen, set milestone to 8.0.1 and assign to me (@trommler). Thanks! -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:16 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: merge Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Comment (by nomeata): Yay, vector-algorithms built now on powerpc! -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:17 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: merge Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Comment (by trommler): Replying to [comment:17 nomeata]:
Yay, vector-algorithms built now on powerpc! Excellent, I built on openSUSE build service, too.
vector-algorithms builds fine but the testsuite is stuck forever on x86, x86_64, and powerpc. FWIW: powerpc64[le], is also stuck, but my compiler is patched with a back port of the NCG from 8.0. Do you see that, too? -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:18 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. ---------------------------------------+---------------------------------- Reporter: nomeata | Owner: Type: bug | Status: merge Priority: normal | Milestone: 7.10.3 Component: Compiler (CodeGen) | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322 Wiki Page: | ---------------------------------------+---------------------------------- Comment (by nomeata): No, passes everywhere. But given the large output of the test suite, this sounds like https://github.com/haskell/cabal/issues/2398. Try to add the patch from https://github.com/haskell/cabal/pull/2913 and add `--show- details=direct`. -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:19 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed. -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: merge Priority: normal | Milestone: 7.10.3 Component: Compiler | Version: 7.10.2 (CodeGen) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322, Wiki Page: | Phab:1459 -------------------------------------+------------------------------------- Changes (by trommler): * differential: Phab:D1322 => Phab:D1322, Phab:1459 Comment: I uploaded the fix for HEAD to Phabricator. Thanks to @nomeata for testing and also for the pointers in comment:19! To sum up: 1. Phab:1459 has the patch for HEAD 1. `0001-PPC-nativeGen-fix-shift-right-arithmetic-31-bit.patch` attached to this ticket has the patch for ghc-7.10 BTW: Is there a way to post a patch to a branch on Phabricator? -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:20 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#10870: PPC.Ppr: Shift by 32 bits is not allowed.
-------------------------------------+-------------------------------------
Reporter: nomeata | Owner:
Type: bug | Status: merge
Priority: normal | Milestone: 7.10.3
Component: Compiler | Version: 7.10.2
(CodeGen) |
Resolution: | Keywords:
Operating System: Unknown/Multiple | Architecture: powerpc
Type of failure: None/Unknown | Test Case:
Blocked By: | Blocking:
Related Tickets: | Differential Rev(s): Phab:D1322,
Wiki Page: | Phab:1459
-------------------------------------+-------------------------------------
Comment (by Ben Gamari

#10870: PPC.Ppr: Shift by 32 bits is not allowed. -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: closed Priority: normal | Milestone: 7.10.3 Component: Compiler | Version: 7.10.2 (CodeGen) | Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1322, Wiki Page: | Phab:1459 -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/10870#comment:22 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler
participants (1)
-
GHC