Repository : ssh://darcs.haskell.org//srv/darcs/testsuite On branch : master
http://hackage.haskell.org/trac/ghc/changeset/a9717b9d0a49882c9635f8149fcc433a3b2f7af6 >--------------------------------------------------------------- commit a9717b9d0a49882c9635f8149fcc433a3b2f7af6 Author: Simon Marlow <[email protected]> Date: Tue Jun 12 10:44:41 2012 +0100 no need to force -O here any more (#3966) >--------------------------------------------------------------- tests/typecheck/should_fail/T3966.hs | 3 +-- tests/typecheck/should_fail/T3966.stderr | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/typecheck/should_fail/T3966.hs b/tests/typecheck/should_fail/T3966.hs index 7b1184c..0824345 100644 --- a/tests/typecheck/should_fail/T3966.hs +++ b/tests/typecheck/should_fail/T3966.hs @@ -1,5 +1,4 @@ -{-# OPTIONS_GHC -Werror -O #-} --- Add -O so the UNPACK has some effect +{-# OPTIONS_GHC -Werror #-} module T3966 where diff --git a/tests/typecheck/should_fail/T3966.stderr b/tests/typecheck/should_fail/T3966.stderr index 9b08158..ccbe467 100644 --- a/tests/typecheck/should_fail/T3966.stderr +++ b/tests/typecheck/should_fail/T3966.stderr @@ -1,5 +1,5 @@ -T3966.hs:6:16: Warning: +T3966.hs:5:16: Warning: Ignoring unusable UNPACK pragma on the first argument of `Foo' In the definition of data constructor `Foo' In the data declaration for `Foo' _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
