Peter Trommler pushed to branch wip/T26519 at Glasgow Haskell Compiler / GHC Commits: 8bc84a71 by Peter Trommler at 2025-12-01T22:26:30+01:00 Fix type of loadZeroExpand - - - - - 1 changed file: - compiler/GHC/CmmToAsm/PPC/CodeGen.hs Changes: ===================================== compiler/GHC/CmmToAsm/PPC/CodeGen.hs ===================================== @@ -769,7 +769,7 @@ extendSExpr from to x = CmmMachOp (MO_SS_Conv from to) [x] extendUExpr :: Width -> Width -> CmmExpr -> CmmExpr extendUExpr from to x = CmmMachOp (MO_UU_Conv from to) [x] -loadZeroExpand :: CmmExpr -> CmmType -> Format -> NatM Register +loadZeroExpand :: CmmExpr -> CmmType -> Width -> NatM Register loadZeroExpand mem pk tgt = do Amode addr addr_code <- getAmode D mem let code dst = addr_code `snocOL` LD (cmmTypeFormat pk) dst addr View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/8bc84a71f16c440a83b3556c14464605... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/8bc84a71f16c440a83b3556c14464605... You're receiving this email because of your account on gitlab.haskell.org.