diff options
author | Josh Meredith <joshmeredith2008@gmail.com> | 2020-03-23 04:01:05 +1100 |
---|---|---|
committer | Josh Meredith <joshmeredith2008@gmail.com> | 2020-04-10 23:37:08 -0400 |
commit | bcf72afe16c851afae3e0723ea851946750e7b30 (patch) | |
tree | f5d852e7cb6945bb141a0c6ed180fa449bf03a67 /compiler/GHC/Iface/Make.hs | |
parent | bcafaa82a0223afd5d103e052ab9a097a676e5ea (diff) | |
download | haskell-wip/extensible-interface-files.tar.gz |
Implement extensible interface fileswip/extensible-interface-files
Diffstat (limited to 'compiler/GHC/Iface/Make.hs')
-rw-r--r-- | compiler/GHC/Iface/Make.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/GHC/Iface/Make.hs b/compiler/GHC/Iface/Make.hs index 677c8cef71..ef9e77b44d 100644 --- a/compiler/GHC/Iface/Make.hs +++ b/compiler/GHC/Iface/Make.hs @@ -268,7 +268,8 @@ mkIface_ hsc_env mi_doc_hdr = doc_hdr, mi_decl_docs = decl_docs, mi_arg_docs = arg_docs, - mi_final_exts = () } + mi_final_exts = (), + mi_ext_fields = emptyExtensibleFields } where cmp_rule = comparing ifRuleName -- Compare these lexicographically by OccName, *not* by unique, |