Suppress -Winaccessible-code in derived code
Summary: It's rather unfortunate that derived code can produce inaccessible code warnings (as demonstrated in #8128, #8740, and #15398), since the programmer has no control over the generated code. This patch aims to suppress `-Winaccessible-code` in all derived code. It accomplishes this by doing the following: * Generalize the `ic_env :: TcLclEnv` field of `Implication` to be of type `Env TcGblEnc TcLclEnv` instead. This way, it also captures `DynFlags`, which record the flag state at the time the `Implication` was created. * When typechecking derived code, turn off `-Winaccessible-code`. This way, any insoluble given `Implication`s that are created when typechecking this derived code will remember that `-Winaccessible-code` was disabled. * During error reporting, consult the `DynFlags` of an `Implication` before making the decision to report an inaccessible code warning. Test Plan: make test TEST="T8128 T8740 T15398" Reviewers: simonpj, bgamari Reviewed By: simonpj Subscribers: monoidal, rwbarton, thomie, carter GHC Trac Issues: #8128, #8740, #15398 Differential Revision: https://phabricator.haskell.org/D4993
Showing
- compiler/typecheck/TcErrors.hs 19 additions, 14 deletionscompiler/typecheck/TcErrors.hs
- compiler/typecheck/TcInstDcls.hs 69 additions, 15 deletionscompiler/typecheck/TcInstDcls.hs
- compiler/typecheck/TcRnTypes.hs 46 additions, 20 deletionscompiler/typecheck/TcRnTypes.hs
- compiler/typecheck/TcSMonad.hs 16 additions, 18 deletionscompiler/typecheck/TcSMonad.hs
- compiler/typecheck/TcSimplify.hs 20 additions, 19 deletionscompiler/typecheck/TcSimplify.hs
- compiler/typecheck/TcUnify.hs 18 additions, 20 deletionscompiler/typecheck/TcUnify.hs
- testsuite/tests/deriving/should_compile/T15398.hs 20 additions, 0 deletionstestsuite/tests/deriving/should_compile/T15398.hs
- testsuite/tests/deriving/should_compile/T8128.stderr 0 additions, 14 deletionstestsuite/tests/deriving/should_compile/T8128.stderr
- testsuite/tests/deriving/should_compile/T8740.stderr 0 additions, 18 deletionstestsuite/tests/deriving/should_compile/T8740.stderr
- testsuite/tests/deriving/should_compile/all.T 1 addition, 0 deletionstestsuite/tests/deriving/should_compile/all.T
Loading
Please register or sign in to comment