diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2011-07-21 12:38:23 +0100 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2011-07-21 12:38:23 +0100 |
commit | e815d4b125c3804695a2a0b120e1eac142547873 (patch) | |
tree | af720a5b307d57049e2967d78bd9e7e16c23049f /compiler/iface/MkIface.lhs | |
parent | 6e7a74f339d424379d9c3e724fc710037effa8a5 (diff) | |
download | haskell-e815d4b125c3804695a2a0b120e1eac142547873.tar.gz |
Change loop breaker terminology
We used to have "loop breaker" and "non-rule loop breaker", but
the unqualified version in particualr was pretty confusing. So
now we have "strong loop breaker" and "weak loop breaker";
comments in BasicTypes and OccurAnal.
Diffstat (limited to 'compiler/iface/MkIface.lhs')
-rw-r--r-- | compiler/iface/MkIface.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/iface/MkIface.lhs b/compiler/iface/MkIface.lhs index d9765ce89f..7e1a4631a5 100644 --- a/compiler/iface/MkIface.lhs +++ b/compiler/iface/MkIface.lhs @@ -1531,7 +1531,7 @@ toIfaceIdInfo id_info ------------ Unfolding -------------- unfold_hsinfo = toIfUnfolding loop_breaker (unfoldingInfo id_info) - loop_breaker = isNonRuleLoopBreaker (occInfo id_info) + loop_breaker = isStrongLoopBreaker (occInfo id_info) ------------ Inline prag -------------- inline_prag = inlinePragInfo id_info |