[Git][ghc/ghc][wip/T26519] Fix syntax error in guard
Peter Trommler pushed to branch wip/T26519 at Glasgow Haskell Compiler / GHC Commits: 193d45b8 by Peter Trommler at 2025-12-01T22:19:47+01:00 Fix syntax error in guard - - - - - 1 changed file: - compiler/GHC/CmmToAsm/PPC/CodeGen.hs Changes: ===================================== compiler/GHC/CmmToAsm/PPC/CodeGen.hs ===================================== @@ -474,7 +474,7 @@ getRegister' _ _ (CmmMachOp (MO_UU_Conv src tgt) [CmmLoad mem pk _]) , cmmTypeFormat pk == intFormat src = loadZeroExpand mem pk tgt getRegister' _ _ (CmmMachOp (MO_XX_Conv src tgt) [CmmLoad mem pk _]) - | src < tgt = + | src < tgt , cmmTypeFormat pk == intFormat src = loadZeroExpand mem pk tgt -- XXX: This is ugly, refactor View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/193d45b89a7e4c14016f64275bd8bbe4... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/193d45b89a7e4c14016f64275bd8bbe4... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Peter Trommler (@trommler)