From 7f0471be1cfe0ef6110ef7fdd8132d85387d0b21 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Thu, 20 Mar 2008 19:58:36 +0000 Subject: [PATCH] CgTicky now doesn't know about the Integer data constructors --- compiler/codeGen/CgTicky.hs | 2 -- 1 file changed, 2 deletions(-) diff --git a/compiler/codeGen/CgTicky.hs b/compiler/codeGen/CgTicky.hs index 04d2942..34d1dad 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' -- 1.7.10.4