diff options
Diffstat (limited to 'compiler/cmm/CmmBuildInfoTables.hs')
-rw-r--r-- | compiler/cmm/CmmBuildInfoTables.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/cmm/CmmBuildInfoTables.hs b/compiler/cmm/CmmBuildInfoTables.hs index a8f89a1a9c..be96fba7e9 100644 --- a/compiler/cmm/CmmBuildInfoTables.hs +++ b/compiler/cmm/CmmBuildInfoTables.hs @@ -703,7 +703,7 @@ oneSRT dflags staticFuns blockids lbls isCAF cafs = do -- Remove recursive references from the SRT, except for (all but -- one of the) static functions. See Note [recursive SRTs]. nonRec = cafs `Set.difference` - Set.fromList lbls `Set.difference` Set.fromList otherFunLabels + (Set.fromList lbls `Set.difference` Set.fromList otherFunLabels) -- First resolve all the CAFLabels to SRTEntries -- Implements the [Inline] optimisation. |