X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=compiler%2FcoreSyn%2FMkExternalCore.lhs;h=3315240edd01e9a7401a8d087501ae42fd842260;hp=ce09288366db58e558d4b0d8ffe1e2ae6d0ad8d0;hb=ee2dd59cf1c96437696b9ec39b35dd1beea259a1;hpb=24ce1351fb121d429375f411a8a95d619de921e1 diff --git a/compiler/coreSyn/MkExternalCore.lhs b/compiler/coreSyn/MkExternalCore.lhs index ce09288..3315240 100644 --- a/compiler/coreSyn/MkExternalCore.lhs +++ b/compiler/coreSyn/MkExternalCore.lhs @@ -174,6 +174,7 @@ make_ty (NoteTy _ t) = make_ty t make_kind :: Kind -> C.Kind make_kind (FunKind k1 k2) = C.Karrow (make_kind k1) (make_kind k2) make_kind LiftedTypeKind = C.Klifted +make_kind UnboxedTypeKind = C.Kunboxed make_kind UnliftedTypeKind = C.Kunlifted make_kind OpenTypeKind = C.Kopen make_kind _ = error "MkExternalCore died: make_kind"