diff options
Diffstat (limited to 'compiler/main/HeaderInfo.hs')
-rw-r--r-- | compiler/main/HeaderInfo.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/main/HeaderInfo.hs b/compiler/main/HeaderInfo.hs index 93ce824964..3fd9916c1e 100644 --- a/compiler/main/HeaderInfo.hs +++ b/compiler/main/HeaderInfo.hs @@ -98,7 +98,7 @@ mkPrelImports this_mod implicit_prelude import_decls | otherwise = [preludeImportDecl] where explicit_prelude_import - = notNull [ () | L _ (ImportDecl mod Nothing _ _ _ _) <- import_decls, + = notNull [ () | L _ (ImportDecl mod Nothing _ _ _ _ _) <- import_decls, unLoc mod == pRELUDE_NAME ] preludeImportDecl :: LImportDecl RdrName @@ -107,6 +107,7 @@ mkPrelImports this_mod implicit_prelude import_decls ImportDecl (L loc pRELUDE_NAME) Nothing {- no specific package -} False {- Not a boot interface -} + False {- Not a safe interface -} False {- Not qualified -} Nothing {- No "as" -} Nothing {- No import list -} |