diff options
| author | David Terei <davidterei@gmail.com> | 2011-08-19 12:13:43 -0700 |
|---|---|---|
| committer | David Terei <davidterei@gmail.com> | 2011-08-19 12:13:43 -0700 |
| commit | 26cf7e526c8e88d8c161c2e30865a914fc48ed6c (patch) | |
| tree | 8606429e4f69dfd12f9c403d8c7336dde16b366c /compiler/cmm/CmmStackLayout.hs | |
| parent | 710169bbe79cace8b1c8484f3c359b34c922f476 (diff) | |
| download | haskell-26cf7e526c8e88d8c161c2e30865a914fc48ed6c.tar.gz | |
'Fix' a validation problem when bootstrap is 7.2.1
Problem is with GADTs in new code gen and incomplete pattern
warnings. Just disabled the warning really and created #5424
to track an actual fix.
Diffstat (limited to 'compiler/cmm/CmmStackLayout.hs')
| -rw-r--r-- | compiler/cmm/CmmStackLayout.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/cmm/CmmStackLayout.hs b/compiler/cmm/CmmStackLayout.hs index c0fb6af037..4c01a1a752 100644 --- a/compiler/cmm/CmmStackLayout.hs +++ b/compiler/cmm/CmmStackLayout.hs @@ -6,7 +6,7 @@ {-# OPTIONS_GHC -fno-warn-warnings-deprecations #-} {-# OPTIONS_GHC -fno-warn-incomplete-patterns #-} -#if __GLASGOW_HASKELL__ >= 701 +#if __GLASGOW_HASKELL__ >= 703 -- GHC 7.0.1 improved incomplete pattern warnings with GADTs {-# OPTIONS_GHC -fwarn-incomplete-patterns #-} #endif |
