From 511ec7f33db67d0daa4919bc06043b1e92879318 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 11 May 2000 11:54:56 +0000 Subject: [PATCH] [project @ 2000-05-11 11:54:56 by simonmar] StablePtrRep is now more like a pointer than an integer, so use the correct union tag when assigning one to a register to avoid warnings. --- ghc/compiler/absCSyn/PprAbsC.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/compiler/absCSyn/PprAbsC.lhs b/ghc/compiler/absCSyn/PprAbsC.lhs index 8996adf..c90b9b4 100644 --- a/ghc/compiler/absCSyn/PprAbsC.lhs +++ b/ghc/compiler/absCSyn/PprAbsC.lhs @@ -1294,7 +1294,7 @@ pprUnionTag AddrRep = char 'a' pprUnionTag FloatRep = char 'f' pprUnionTag DoubleRep = panic "pprUnionTag:Double?" -pprUnionTag StablePtrRep = char 'i' +pprUnionTag StablePtrRep = char 'p' pprUnionTag StableNameRep = char 'p' pprUnionTag WeakPtrRep = char 'p' pprUnionTag ForeignObjRep = char 'p' -- 1.7.10.4