[Git][ghc/ghc][wip/lazifier] Clean up diff
Jaro Reinders pushed to branch wip/lazifier at Glasgow Haskell Compiler / GHC Commits: 11151914 by Jaro Reinders at 2026-06-13T13:07:44+02:00 Clean up diff - - - - - 3 changed files: - compiler/GHC/Builtin/Types/Prim.hs - compiler/GHC/StgToCmm/Expr.hs - rts/PrimOps.cmm Changes: ===================================== compiler/GHC/Builtin/Types/Prim.hs ===================================== @@ -70,7 +70,6 @@ module GHC.Builtin.Types.Prim( arrayPrimTyCon, mkArrayPrimTy, byteArrayPrimTyCon, byteArrayPrimTy, - -- byteArrayLiftedPrimTyCon, smallArrayPrimTyCon, mkSmallArrayPrimTy, mutableArrayPrimTyCon, mkMutableArrayPrimTy, mutableByteArrayPrimTyCon, mkMutableByteArrayPrimTy, ===================================== compiler/GHC/StgToCmm/Expr.hs ===================================== @@ -64,7 +64,7 @@ import GHC.Platform.Profile (profileIsProfiling) -- cgExpr: the main function ------------------------------------------------------------------------ -cgExpr :: HasCallStack => CgStgExpr -> FCode ReturnKind +cgExpr :: CgStgExpr -> FCode ReturnKind cgExpr (StgApp fun args) = cgIdApp fun args ===================================== rts/PrimOps.cmm ===================================== @@ -120,7 +120,6 @@ stg_newByteArrayzh ( W_ n ) return (p); } - #define BA_ALIGN 16 #define BA_MASK (BA_ALIGN-1) View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/11151914541f786efb733bb78d15c9ae... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/11151914541f786efb733bb78d15c9ae... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Jaro Reinders (@jaro)