Improve specialisation for imported functions
At a SPECIALSE pragma for an imported Id, we used to check that it was marked INLINABLE. But that turns out to interact badly with worker/wrapper: see Note [Worker-wrapper for INLINABLE functions] in GHC.Core.Opt.WorkWrap. So this small patch instead simply tests that we have an unfolding for the function; see Note [SPECIALISE pragmas for imported Ids] in GHC.Tc.Gen.Sig. Fixes #19246
Showing
- compiler/GHC/Tc/Gen/Sig.hs 27 additions, 9 deletionscompiler/GHC/Tc/Gen/Sig.hs
- testsuite/tests/simplCore/should_compile/T19246.hs 5 additions, 0 deletionstestsuite/tests/simplCore/should_compile/T19246.hs
- testsuite/tests/simplCore/should_compile/T19246.stderr 11 additions, 0 deletionstestsuite/tests/simplCore/should_compile/T19246.stderr
- testsuite/tests/simplCore/should_compile/T19246a.hs 8 additions, 0 deletionstestsuite/tests/simplCore/should_compile/T19246a.hs
- testsuite/tests/simplCore/should_compile/all.T 1 addition, 0 deletionstestsuite/tests/simplCore/should_compile/all.T
Please register or sign in to comment