diff options
Diffstat (limited to 'compiler/ghci/RtClosureInspect.hs')
-rw-r--r-- | compiler/ghci/RtClosureInspect.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/ghci/RtClosureInspect.hs b/compiler/ghci/RtClosureInspect.hs index c30d06ff3d..9fe18a57cf 100644 --- a/compiler/ghci/RtClosureInspect.hs +++ b/compiler/ghci/RtClosureInspect.hs @@ -856,7 +856,7 @@ extractSubTerms recurse clos = liftM thdOf3 . go 0 0 | otherwise = do -- This is a bit involved since we allow packing multiple fields -- within a single word. See also - -- StgCmmLayout.mkVirtHeapOffsetsWithPadding + -- GHC.StgToCmm.Layout.mkVirtHeapOffsetsWithPadding dflags <- getDynFlags let word_size = wORD_SIZE dflags big_endian = wORDS_BIGENDIAN dflags @@ -864,7 +864,7 @@ extractSubTerms recurse clos = liftM thdOf3 . go 0 0 -- Align the start offset (eg, 2-byte value should be 2-byte -- aligned). But not more than to a word. The offset calculation -- should be the same with the offset calculation in - -- StgCmmLayout.mkVirtHeapOffsetsWithPadding. + -- GHC.StgToCmm.Layout.mkVirtHeapOffsetsWithPadding. !aligned_idx = roundUpTo arr_i (min word_size size_b) !new_arr_i = aligned_idx + size_b ws | size_b < word_size = |