From fc23a3d939067d47c03509d62c96f4ae76833059 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 14 Jul 1999 12:31:14 +0000 Subject: [PATCH] [project @ 1999-07-14 12:31:14 by simonmar] Recover the -funbox-strict-fields test. --- ghc/tests/deSugar/should_compile/ds046.hs | 30 +++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 ghc/tests/deSugar/should_compile/ds046.hs diff --git a/ghc/tests/deSugar/should_compile/ds046.hs b/ghc/tests/deSugar/should_compile/ds046.hs new file mode 100644 index 0000000..15d7199 --- /dev/null +++ b/ghc/tests/deSugar/should_compile/ds046.hs @@ -0,0 +1,30 @@ +module Test where + +-- Strict field unpacking tests: compile with -O -funbox-strict-fields. + +-- test 1: simple unboxed int field +data T = T !Int +t (T i) = i + 1 + +-- test 2: mutual recursion (should back off from unboxing either field) +data R = R !R +data S = S !S + +r (R s) = s + +-- test 3: multi-level unboxing +data A = A Int !B Int +data B = B !Int + +f = A 1 (B 2) 1 +g (A x (B y) z) = A x (B (y+2)) z +h (A x (B y) z) = y + 2 + +-- test 4: flattening nested tuples +data C = C !(Int,Int) +j (C (a,b)) = a + b + +-- test 5: polymorphism, multiple strict fields +data D a b = D Int !(a,b) !(E Int) +data E a = E a +k (D a (b,c) (E d)) = a + b + c + d -- 1.7.10.4