diff options
author | Simon Marlow <marlowsd@gmail.com> | 2012-01-16 13:23:24 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2012-01-16 13:27:58 +0000 |
commit | 25d3e4ba84c0127acd43edded86e293637c6939b (patch) | |
tree | 2948e20cdf481e385cb5aac17f2e774b42e03a34 | |
parent | 395ef284545bb5e7a57c180cc1f2a1b66fa30f37 (diff) | |
download | haskell-25d3e4ba84c0127acd43edded86e293637c6939b.tar.gz |
Remove unnecessary extra use of orphan_hash
-rw-r--r-- | compiler/iface/MkIface.lhs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/iface/MkIface.lhs b/compiler/iface/MkIface.lhs index 8341a1d2ae..9904042fe0 100644 --- a/compiler/iface/MkIface.lhs +++ b/compiler/iface/MkIface.lhs @@ -594,8 +594,7 @@ addFingerprints hsc_env mb_old_fingerprint iface0 new_decls -- - flag abi hash mod_hash <- computeFingerprint putNameLiterally (map fst sorted_decls, - export_hash, - orphan_hash, + export_hash, -- includes orphan_hash mi_warns iface0, mi_vect_info iface0) |