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

T20275 crashes when run with optimisations (cmmMachOpFoldM: unknown unary op: MO_WF_Bitcast W64)
```hs {-# OPTIONS_GHC -O #-} module T20275_opt where import Numeric import GHC.Float main = do putStrLn (showHex (castFloatToWord32 (abs (castWord32ToFloat 0xFFC00000))) "") putStrLn (showHex (castDoubleToWord64 (abs (castWord64ToDouble 0xFFF8000000000000))) "") ``` ``` error: panic! (the 'impossible' happened) GHC version 9.13.20250212: cmmMachOpFoldM: unknown unary op: MO_WF_Bitcast W64 ```
issue