Skip to content
Snippets Groups Projects
Commit bc467a8b authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1999-12-13 17:25:57 by simonmar]

Fix bug in abs::Integer->Integer: result was wrong for minBound::Int.
parent 1fa4a563
No related merge requests found
......@@ -242,11 +242,9 @@ instance Num Integer where
-- ORIG: abs n = if n >= 0 then n else -n
abs (S# (-2147483648#)) = 2147483648
abs (S# i) = case abs (I# i) of I# j -> S# j
abs n@(J# s d)
= if (cmpIntegerInt# s d 0#) >=# 0#
then n
else J# (negateInt# s) d
abs n@(J# s d) = if (s >=# 0#) then n else J# (negateInt# s) d
signum (S# i) = case signum (I# i) of I# j -> S# j
signum (J# s d)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment