diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2021-04-07 10:26:08 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-04-08 08:07:11 -0400 |
commit | e0d861d4f9848428b15435e1b8718090179073af (patch) | |
tree | 5e5d3150a0e887d68a222b37fbd5d639e7b47208 /testsuite/tests/perf/compiler | |
parent | 42d88003b0815f4e975fd80e34422000c3100c6c (diff) | |
download | haskell-e0d861d4f9848428b15435e1b8718090179073af.tar.gz |
T11545 now also passes due to modifications in demand analysis
Fixes #11545
Diffstat (limited to 'testsuite/tests/perf/compiler')
-rw-r--r-- | testsuite/tests/perf/compiler/T11545.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/perf/compiler/all.T | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/perf/compiler/T11545.hs b/testsuite/tests/perf/compiler/T11545.hs index d35e21c2e8..d139de70f4 100644 --- a/testsuite/tests/perf/compiler/T11545.hs +++ b/testsuite/tests/perf/compiler/T11545.hs @@ -1,6 +1,6 @@ module T11545 where -data A = A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A deriving (Eq) +data A = A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A deriving (Eq) data QuadTree a = QuadTree !Int [a] (QuadTree a) (QuadTree a) (QuadTree a) (QuadTree a) diff --git a/testsuite/tests/perf/compiler/all.T b/testsuite/tests/perf/compiler/all.T index b09c418698..651c9a2128 100644 --- a/testsuite/tests/perf/compiler/all.T +++ b/testsuite/tests/perf/compiler/all.T @@ -454,5 +454,5 @@ test ('T9198', ['']) test('T11545', - [ expect_broken(11545) ], + [ normal ], compile, ['-O +RTS -M50M -RTS']) |