[project @ 2000-07-03 19:48:07 by panne]
authorpanne <unknown>
Mon, 3 Jul 2000 19:48:07 +0000 (19:48 +0000)
committerpanne <unknown>
Mon, 3 Jul 2000 19:48:07 +0000 (19:48 +0000)
commit180097ce1628a67c97f54b313268600ed1756652
treee6140fc66458030c7cea1daede46e97166b8f455
parent736571638af5d8a6014deadd17be32c6abe0e242
[project @ 2000-07-03 19:48:07 by panne]
Putting parentheses around expressions involving a mixture of
multiplicative and additive operators might sometimes be a cunning
idea...   :-}   Otherwise
   (591125662431::Int) `div` (517::Int)
is correctly converted into
   (567659506 + (275 * 2147483647)) `div`  517
but
    591125662431       `div` (517::Int)
turns into the messed up
    567659506 + ((275 * 2147483647) `div`  517)
ghc/compiler/rename/RnExpr.lhs