From f6a9f267230d8685b34e6a89b622904ebd60aba4 Mon Sep 17 00:00:00 2001 From: "simonpj@microsoft.com" Date: Fri, 24 Sep 2010 07:09:14 +0000 Subject: [PATCH] Fix braino in WwLib/Literal patch --- compiler/basicTypes/Literal.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/basicTypes/Literal.lhs b/compiler/basicTypes/Literal.lhs index 0ebf5bf..da8685e 100644 --- a/compiler/basicTypes/Literal.lhs +++ b/compiler/basicTypes/Literal.lhs @@ -339,7 +339,7 @@ absent_lits :: UniqFM Literal absent_lits = listToUFM [ (addrPrimTyConKey, MachNullAddr) , (charPrimTyConKey, MachChar 'x') , (intPrimTyConKey, MachInt 0) - , (int64PrimTyConKey, MachInt 0) + , (int64PrimTyConKey, MachInt64 0) , (floatPrimTyConKey, MachFloat 0) , (doublePrimTyConKey, MachDouble 0) , (wordPrimTyConKey, MachWord 0) -- 1.7.10.4