Fix solveOneFromTheOther for RecursiveSuperclasses
This patch fixes the redundant superclass expansion in Trac #14774. The main change is to fix TcInterac.solveOneFromTheOther, so that it does not prefer a work-item with a binding if that binding transitively depends on the inert item we are comparing it with. Explained in Note [Replacement vs keeping] in TcInert, esp item (c) of the "Constraints coming from the same level" part. To make this work I refactored out a new function TcEvidence.findNeededEvVars, which was previously buried inside TcSimplify.neededEvVars. I added quite a few more comments and signposts about superclass expansion.
Showing
- compiler/typecheck/TcCanonical.hs 33 additions, 10 deletionscompiler/typecheck/TcCanonical.hs
- compiler/typecheck/TcEvidence.hs 28 additions, 1 deletioncompiler/typecheck/TcEvidence.hs
- compiler/typecheck/TcInteract.hs 31 additions, 16 deletionscompiler/typecheck/TcInteract.hs
- compiler/typecheck/TcSimplify.hs 6 additions, 16 deletionscompiler/typecheck/TcSimplify.hs
- testsuite/tests/typecheck/should_compile/Makefile 4 additions, 0 deletionstestsuite/tests/typecheck/should_compile/Makefile
- testsuite/tests/typecheck/should_compile/T14774.hs 13 additions, 0 deletionstestsuite/tests/typecheck/should_compile/T14774.hs
- testsuite/tests/typecheck/should_compile/T14774.stdout 3 additions, 0 deletionstestsuite/tests/typecheck/should_compile/T14774.stdout
- testsuite/tests/typecheck/should_compile/all.T 1 addition, 0 deletionstestsuite/tests/typecheck/should_compile/all.T
Loading
Please register or sign in to comment