From 44ac4f51304d0693ecd03e724bf9d9d671a40612 Mon Sep 17 00:00:00 2001 From: simonpj Date: Tue, 26 Jul 2005 07:30:37 +0000 Subject: [PATCH] [project @ 2005-07-26 07:30:37 by simonpj] Revert accidental commit --- ghc/compiler/basicTypes/IdInfo.lhs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ghc/compiler/basicTypes/IdInfo.lhs b/ghc/compiler/basicTypes/IdInfo.lhs index 5797436..765d776 100644 --- a/ghc/compiler/basicTypes/IdInfo.lhs +++ b/ghc/compiler/basicTypes/IdInfo.lhs @@ -674,12 +674,12 @@ zapLamInfo info@(IdInfo {occInfo = occ, newDemandInfo = demand}) where -- The "unsafe" occ info is the ones that say I'm not in a lambda -- because that might not be true for an unsaturated lambda - is_safe_occ (OneOcc in_lam _ _) = in_lam - is_safe_occ other = True + is_safe_occ (OneOcc in_lam _) = in_lam + is_safe_occ other = True safe_occ = case occ of - OneOcc _ once min_args -> OneOcc insideLam once min_args - other -> occ + OneOcc _ once -> OneOcc insideLam once + other -> occ is_safe_dmd Nothing = True is_safe_dmd (Just dmd) = not (isStrictDmd dmd) -- 1.7.10.4