From 4faa1a63d0496fd511d2d139622dbf7ef2ce4655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Sinan=20A=C4=9Facan?= Date: Wed, 27 Jan 2016 13:15:15 +0100 Subject: s/unLifted/unlifted for consistency This was causing trouble as we had to remember when to use "unLifted" and when to use "unlifted". "unlifted" is used instead of "unLifted" as it's a single word. Reviewers: austin, hvr, goldfire, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D1852 --- compiler/deSugar/DsCCall.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/deSugar/DsCCall.hs') diff --git a/compiler/deSugar/DsCCall.hs b/compiler/deSugar/DsCCall.hs index 9a3fe5a220..0d9bbb4362 100644 --- a/compiler/deSugar/DsCCall.hs +++ b/compiler/deSugar/DsCCall.hs @@ -157,7 +157,7 @@ unboxArg arg -- Data types with a single constructor, which has a single, primitive-typed arg -- This deals with Int, Float etc; also Ptr, ForeignPtr | is_product_type && data_con_arity == 1 - = ASSERT2(isUnLiftedType data_con_arg_ty1, pprType arg_ty) + = ASSERT2(isUnliftedType data_con_arg_ty1, pprType arg_ty) -- Typechecker ensures this do case_bndr <- newSysLocalDs arg_ty prim_arg <- newSysLocalDs data_con_arg_ty1 -- cgit v1.2.1