summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2023-02-21 16:38:23 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2023-03-02 22:43:59 -0500
commita86aae8b562c12bb3cee8dcae5156b647f1a74ad (patch)
tree2903677558b9615422345fdc7d30e15f95a0aa9c /testsuite
parent5464c73f192f76e75160e8992fe9720d943ae611 (diff)
downloadhaskell-a86aae8b562c12bb3cee8dcae5156b647f1a74ad.tar.gz
constant folding: Correct type of decodeDouble_Int64 rule
The first argument is Int64# unconditionally, so we better produce something of that type. This fixes a core lint error found in the ad package. Fixes #23019
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/tests/numeric/should_compile/T23019.hs21
-rw-r--r--testsuite/tests/numeric/should_compile/all.T1
2 files changed, 22 insertions, 0 deletions
diff --git a/testsuite/tests/numeric/should_compile/T23019.hs b/testsuite/tests/numeric/should_compile/T23019.hs
new file mode 100644
index 0000000000..6b3e3d92ba
--- /dev/null
+++ b/testsuite/tests/numeric/should_compile/T23019.hs
@@ -0,0 +1,21 @@
+module T23019
+ (
+ eexponent
+ ) where
+
+-- spine lazy, value strict list of doubles
+data List
+ = Nil
+ | {-# UNPACK #-} !Double :! List
+
+infixr 5 :!
+
+newtype TowerDouble = Tower { getTower :: List }
+
+primal :: TowerDouble -> Double
+primal (Tower (x:!_)) = x
+primal _ = 0
+
+eexponent :: TowerDouble -> Int
+eexponent = exponent . primal
+
diff --git a/testsuite/tests/numeric/should_compile/all.T b/testsuite/tests/numeric/should_compile/all.T
index 0c22811cc8..6f55e3b2fd 100644
--- a/testsuite/tests/numeric/should_compile/all.T
+++ b/testsuite/tests/numeric/should_compile/all.T
@@ -19,3 +19,4 @@ test('T20347', normal, compile, ['-ddump-simpl -O -dsuppress-all -dno-typeable-b
test('T20448', normal, compile, ['-ddump-simpl -O -dsuppress-all -dno-typeable-binds -dsuppress-uniques'])
test('T19641', normal, compile, ['-ddump-simpl -O -dsuppress-all -dno-typeable-binds -dsuppress-uniques'])
test('T15547', normal, compile, ['-ddump-simpl -O -dsuppress-all -dno-typeable-binds -dsuppress-uniques'])
+test('T23019', normal, compile, ['-O'])