diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-08-17 14:37:05 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-10-11 23:45:10 -0400 |
commit | f6e8feb475cf421c408102c2abd531e380b67b00 (patch) | |
tree | 1fa56fcc63d6a047289d0bbfd19f9d1ae9099417 /testsuite | |
parent | 69ccec2ce685fee3aeac66519645d568b169b592 (diff) | |
download | haskell-f6e8feb475cf421c408102c2abd531e380b67b00.tar.gz |
base: Move IPE helpers to GHC.InfoProv
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/profiling/should_run/staticcallstack001.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/profiling/should_run/staticcallstack002.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/profiling/should_run/staticcallstack001.hs b/testsuite/tests/profiling/should_run/staticcallstack001.hs index e3e1407492..63892d98c3 100644 --- a/testsuite/tests/profiling/should_run/staticcallstack001.hs +++ b/testsuite/tests/profiling/should_run/staticcallstack001.hs @@ -1,6 +1,6 @@ module Main where -import GHC.Stack.CCS +import GHC.InfoProv data D = D Int deriving Show diff --git a/testsuite/tests/profiling/should_run/staticcallstack002.hs b/testsuite/tests/profiling/should_run/staticcallstack002.hs index da3d66efb2..5f986d1ff6 100644 --- a/testsuite/tests/profiling/should_run/staticcallstack002.hs +++ b/testsuite/tests/profiling/should_run/staticcallstack002.hs @@ -1,7 +1,7 @@ {-# LANGUAGE UnboxedTuples #-} module Main where -import GHC.Stack.CCS +import GHC.InfoProv -- Unboxed data constructors don't have info tables so there is -- a special case to not generate distinct info tables for unboxed |