Admin message

Due to a large amount of spam we do not allow new users to create repositories, they are "external" users. If you are a new user and want to create a repository, for example for forking GHC, open a new issue on ghc/ghc using the "get-verified" issue template

AArch64 NCG: `signExtendReg` W32 emits SXTH instead of SXTW
## Summary `signExtendReg` in `compiler/GHC/CmmToAsm/AArch64/CodeGen.hs` (~line 1450) uses `SXTH` (sign-extend halfword, 16-bit) for the `W32 | otherwise` case. It should use `SXTW` (sign-extend word, 32-bit) to correctly sign-extend a 32-bit value to 64 bits. `SXTW` is commented out in `compiler/GHC/CmmToAsm/AArch64/Instr.hs` (line 610). ## Environment * GHC version used: 9.15
issue