diff options
author | Ian Lynagh <igloo@earth.li> | 2008-03-20 19:58:36 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-03-20 19:58:36 +0000 |
commit | 7f0471be1cfe0ef6110ef7fdd8132d85387d0b21 (patch) | |
tree | e85eb52768190fbfb2706042228766f9a7b1070c /compiler/codeGen | |
parent | 8d84d843da4886861b2b27236b413ad135666653 (diff) | |
download | haskell-7f0471be1cfe0ef6110ef7fdd8132d85387d0b21.tar.gz |
CgTicky now doesn't know about the Integer data constructors
Diffstat (limited to 'compiler/codeGen')
-rw-r--r-- | compiler/codeGen/CgTicky.hs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/codeGen/CgTicky.hs b/compiler/codeGen/CgTicky.hs index 04d294233c..34d1dad873 100644 --- a/compiler/codeGen/CgTicky.hs +++ b/compiler/codeGen/CgTicky.hs @@ -373,8 +373,6 @@ showTypeCategory ty else if utc == intDataConKey then 'I' else if utc == floatDataConKey then 'F' else if utc == doubleDataConKey then 'D' - else if utc == smallIntegerDataConKey || - utc == largeIntegerDataConKey then 'J' else if utc == charPrimTyConKey then 'c' else if (utc == intPrimTyConKey || utc == wordPrimTyConKey || utc == addrPrimTyConKey) then 'i' |