From 02ca3a08b287f2efcfddb46e8cd1eca5eccf68a2 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 9 Oct 2008 09:11:18 +0000 Subject: [PATCH] pushAtom: add missing case for MachNullAddr (#2589) --- compiler/ghci/ByteCodeGen.lhs | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/ghci/ByteCodeGen.lhs b/compiler/ghci/ByteCodeGen.lhs index b45a643..e171a38 100644 --- a/compiler/ghci/ByteCodeGen.lhs +++ b/compiler/ghci/ByteCodeGen.lhs @@ -1219,6 +1219,7 @@ pushAtom _ _ (AnnLit lit) MachFloat _ -> code FloatArg MachDouble _ -> code DoubleArg MachChar _ -> code NonPtrArg + MachNullAddr -> code NonPtrArg MachStr s -> pushStr s l -> pprPanic "pushAtom" (ppr l) where -- 1.7.10.4