Andreas Klebinger pushed to branch wip/andreask/cfg-fix at Glasgow Haskell Compiler / GHC
Commits:
-
601c8e8d
by Andreas Klebinger at 2026-08-28T14:06:51+00:00
1 changed file:
Changes:
| ... | ... | @@ -514,7 +514,7 @@ assignMem_I64Code addrTree valueTree = do |
| 514 | 514 | -- Little-endian store
|
| 515 | 515 | mov_lo = MOV II32 (OpReg rlo) (OpAddr addr)
|
| 516 | 516 | mov_hi = MOV II32 (OpReg rhi) (OpAddr (fromJust (addrOffset addr 4)))
|
| 517 | - return (vcode `appOL` addr_code `snocOL` mov_lo `snocOL` mov_hi)
|
|
| 517 | + return (addr_code `appOL` vcode `snocOL` mov_lo `snocOL` mov_hi)
|
|
| 518 | 518 | |
| 519 | 519 | |
| 520 | 520 | assignReg_I64Code :: CmmReg -> CmmExpr -> NatM InstrBlock
|