Enable maxBound checks for OverloadedLists (Fixes #18172)
Consider the Literal `[256] :: [Data.Word.Word8]` When the `OverloadedLists` extension is not active, then the `ol_ext` field in the `OverLitTc` record that is passed to the function `getIntegralLit` contains the type `Word8`. This is a simple type, and we can use its type constructor immediately for the `warnAboutOverflowedLiterals` function. When the `OverloadedLists` extension is active, then the `ol_ext` field contains the type family `Item [Word8]`. The function `nomaliseType` is used to convert it to the needed type `Word8`.
Showing
- compiler/GHC/HsToCore/Expr.hs 6 additions, 4 deletionscompiler/GHC/HsToCore/Expr.hs
- compiler/GHC/HsToCore/Match/Literal.hs 59 additions, 23 deletionscompiler/GHC/HsToCore/Match/Literal.hs
- testsuite/tests/deSugar/should_run/T18172.hs 13 additions, 0 deletionstestsuite/tests/deSugar/should_run/T18172.hs
- testsuite/tests/deSugar/should_run/T18172.script 22 additions, 0 deletionstestsuite/tests/deSugar/should_run/T18172.script
- testsuite/tests/deSugar/should_run/T18172.stderr 47 additions, 0 deletionstestsuite/tests/deSugar/should_run/T18172.stderr
- testsuite/tests/deSugar/should_run/T18172.stdout 14 additions, 0 deletionstestsuite/tests/deSugar/should_run/T18172.stdout
- testsuite/tests/deSugar/should_run/all.T 1 addition, 0 deletionstestsuite/tests/deSugar/should_run/all.T
Loading
Please register or sign in to comment