Rodrigo Mesquita pushed to branch wip/romes/bytecode-improvements at Glasgow Haskell Compiler / GHC
Commits:
3a0b9fa4 by Rodrigo Mesquita at 2025-09-03T09:54:59+00:00
Apply 1 suggestion(s) to 1 file(s)
Co-authored-by: Ben Gamari
- - - - -
1 changed file:
- compiler/GHC/StgToByteCode.hs
Changes:
=====================================
compiler/GHC/StgToByteCode.hs
=====================================
@@ -791,7 +791,7 @@ doTailCall init_d s p fn args = do
case lookupBCEnv_maybe fn p of
Just d_v
| d - d_v == 0 -- shortcut; the first thing on the stack is what we want to enter,
- , d_v <= init_d -- and it is between init_d and sequel (which would be dropped)
+ , d_v <= init_d -- and it is between init_d and sequel (which will be dropped)
-> do
let slide = mkSlideB platform (d - init_d + wordSize platform)
(init_d - s - wordSize platform)
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/3a0b9fa41ad955c4ecab577e392a62a0...
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/3a0b9fa41ad955c4ecab577e392a62a0...
You're receiving this email because of your account on gitlab.haskell.org.