diff options
author | Peter Trommler <ptrommler@acm.org> | 2021-05-16 15:01:52 +0200 |
---|---|---|
committer | Peter Trommler <ptrommler@acm.org> | 2021-07-30 19:49:09 +0200 |
commit | a9f14d6784ceeeb4f566b955d86fdbd9f36bb627 (patch) | |
tree | 691cce4ce184cbbea5cdd06396dccd1d9435ee5a | |
parent | 1b5418b7a88989acdce5ebd15ee2d60572b51cf9 (diff) | |
download | haskell-wip/T19852-backport-9.0.tar.gz |
PPC NCG: Fix unsigned compare with 16-bit constantswip/T19852-backport-9.0
Fixes #19852 and #19609
-rw-r--r-- | compiler/GHC/CmmToAsm/PPC/CodeGen.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/GHC/CmmToAsm/PPC/CodeGen.hs b/compiler/GHC/CmmToAsm/PPC/CodeGen.hs index 367faa25bc..516a3840b6 100644 --- a/compiler/GHC/CmmToAsm/PPC/CodeGen.hs +++ b/compiler/GHC/CmmToAsm/PPC/CodeGen.hs @@ -981,7 +981,8 @@ condIntCode' _ cond width x (CmmLit (CmmInt y rep)) | Just src2 <- makeImmediate rep (not $ condUnsigned cond) y = do let op_len = max W32 width - let extend = extendSExpr width op_len + let extend = if condUnsigned cond then extendUExpr width op_len + else extendSExpr width op_len (src1, code) <- getSomeReg (extend x) let format = intFormat op_len code' = code `snocOL` |