[Git][ghc/ghc][wip/az/ghc-cpp] 77 commits: testsuite: Mark T23071 and T2047 as fragile on FreeBSD
Alan Zimmerman (@alanz)
gitlab at gitlab.haskell.org
Sun Feb 23 10:54:34 UTC 2025
Alan Zimmerman pushed to branch wip/az/ghc-cpp at Glasgow Haskell Compiler / GHC
Commits:
ef0e6cfc by Ben Gamari at 2025-02-17T19:20:09-05:00
testsuite: Mark T23071 and T2047 as fragile on FreeBSD
These inexplicably fail on FreeBSD on CI. Sadly I am unable to reproduce
this locally but regardless this is holding up Marge so I will mark them
as fragile for now.
Addresses #25751.
- - - - -
7596675e by Jens Petersen at 2025-02-18T08:53:08-05:00
hp2ps Utilities.c: include stdlib.h instead of extern malloc and realloc
- - - - -
975d932c by Rodrigo Mesquita at 2025-02-18T08:53:45-05:00
Inline join points for rhs without free vars
While investigating #25170, we ran into a program (T16473) that allocated 67%
more because of a join point that failed to inline.
Note [Duplicating join points] explains why we want to be conservative
when inlining join points, using as an example a join point that
captures a free variable `f` that becomes available in the continuation
`blah` for further optimisations, as opposed to being lambda-abstracted.
However, when the RHS of the join point has no free variables and is
trivial, the same argument does not apply, and there's nothing to gain
from preserving it.
On the contrary, not inlining these trivial join points such as
$j f x = K f x |> co
can be actively harmful as they prevent useful optimisations from firing
on the known constructor application. #25723 is such an example.
Therefore, we've extended `uncondInlineJoin` to allow duplicating such closed
trivial join points. See the updated Note [Duplicating join points] for
further details.
Additionally, merge the guards in uncondInlineJoin for point DJ3(b) anad DJ3(c) of
Note [Duplicating join points] to avoid an unnecessary traversal in the
call to `collectArgs`; it's also more uniform.
Co-authored-by: Simon Peyton Jones <simon.peytonjones at gmail.com>
Fixes #25723
- - - - -
78de1a55 by M Farkas-Dyck at 2025-02-18T08:54:31-05:00
Scrub some partiality in `GHC.Tc.Gen.Match`.
In particular, we construct a list of the same length as another list, then loop over both and panic if their lengths are unequal. We can avoid this.
- - - - -
1dfe9325 by M Farkas-Dyck at 2025-02-18T08:54:31-05:00
Make list of `ParStmtBlock` in `ParStmt` `NonEmpty`.
In the ParStmt constructor Language.Haskell.Syntax.Expr.StmtLR, the 2nd argument, the list of ParStmtBlocks, must be NonEmpty; make it so.
- - - - -
0e3575b5 by M Farkas-Dyck at 2025-02-18T08:54:31-05:00
GHC.Tc.Gen.Match: Added type signatures for `loop` functions.
- - - - -
c9ffcfee by sternenseemann at 2025-02-18T08:55:14-05:00
GHC: fix reference to function in Note [Target code interpreter]
As far as I could tell, setSessionDynFlags doesn't deal with hsc_interp.
Also added a backreference so this will be updated in the future.
- - - - -
ab77fc8c by sheaf at 2025-02-18T08:55:57-05:00
Account for skolem escape in mightEqualLater
This commit:
1. Refactors checkTyEqRhs to allow it be called in pure contexts,
which means it skips doing any on-the-fly promotion.
2. Calls checkTyEqRhs in mightEqualLater to check whether it a
MetaTv can unify with a RHS or whether that would cause e.g.
skolem escape errors or concreteness errors.
Fixes #25744
- - - - -
cb8a06a4 by Sylvain Henry at 2025-02-18T08:56:52-05:00
Remove a bunch of Makefiles from old build system
- - - - -
e12d6b39 by M Farkas-Dyck at 2025-02-18T08:57:37-05:00
Totalize `GHC.HsToCore.Match.matchWrappers.initNablasGRHSs`.
Converting from `NonEmpty` to `[]` and back is totally needless.
- - - - -
cd2be3be by Matthew Pickering at 2025-02-18T08:58:14-05:00
interpreter: Always print uniques for BCO_NAME labels
In the previous commit I omitted to include the unique, which still
makes it very difficult to trace back where the BCO came from.
- - - - -
c4e112fc by Matthew Pickering at 2025-02-18T08:58:51-05:00
interpreter: Fix overflows and reentrancy in statistics calculation
1. Use unsigned long for counter, as they can easily overflow if you are
running a long benchmark.
2. Make interp_shutdown reentrant by copying the command frequency table
into an array.
Fixes #25756
- - - - -
70ac6222 by M Farkas-Dyck at 2025-02-18T14:22:06-08:00
Use `Foldable1` where appropriate, avoiding much needless panicking.
In some cases, where not readily feasible to modify code to use `NonEmpty`, merely use `expectNonEmpty` to make explicit we are panicking if we have an empty list.
- - - - -
a3f0a506 by Sylvain Henry at 2025-02-19T05:27:30-05:00
Testsuite: fix deprecation warning
> DeprecationWarning: 'count' is passed as positional argument
- - - - -
ef5470a2 by Ben Gamari at 2025-02-19T16:30:53+00:00
Cmm/Parser: Add surface syntax for Mul2 MachOps
These are otherwise very hard to test in isolation.
- - - - -
59b9307b by Cheng Shao at 2025-02-19T20:24:40-05:00
testsuite: fix InternalCounters test with +debug_ghc
The `InternalCounters` test case fails when ghc is built with
`+debug_ghc`. This patch skips it in that case and allows the
testsuite to pass for the `+debug_ghc` flavour transformer.
- - - - -
aa69187d by M Farkas-Dyck at 2025-02-19T20:25:31-05:00
Scrub a use of `head` in `GHC.Driver.Make.downsweep_imports.checkDuplicates`.
- - - - -
1c8e608a by Cheng Shao at 2025-02-21T20:18:41-05:00
compiler: use fromAscList when applicable
This patch uses fromAscList (with O(n) complexity) instead of fromList
(with O(nlogn) complexity) in certain Binary instances. It's safe to
do so since the corresponding serialization logic is based on toList
(same as toAscList).
- - - - -
549e0aff by Ben Gamari at 2025-02-21T20:19:18-05:00
rts/linker/MachO: Mark internal symbols as static
There is no reason why these should have external linkage.
- - - - -
dc6374b2 by Alan Zimmerman at 2025-02-22T11:40:11+00:00
GHC-CPP: first rough proof of concept
Processes
#define FOO
#ifdef FOO
x = 1
#endif
Into
[ITcppIgnored [L loc ITcppDefine]
,ITcppIgnored [L loc ITcppIfdef]
,ITvarid "x"
,ITequal
,ITinteger (IL {il_text = SourceText "1", il_neg = False, il_value = 1})
,ITcppIgnored [L loc ITcppEndif]
,ITeof]
In time, ITcppIgnored will be pushed into a comment
- - - - -
a69ce0eb by Alan Zimmerman at 2025-02-22T11:40:11+00:00
Tidy up before re-visiting the continuation mechanic
- - - - -
b4a5757c by Alan Zimmerman at 2025-02-22T11:40:11+00:00
Switch preprocessor to continuation passing style
Proof of concept, needs tidying up
- - - - -
a00ed9db by Alan Zimmerman at 2025-02-22T11:40:11+00:00
Small cleanup
- - - - -
07e9abc1 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Get rid of some cruft
- - - - -
4feff51e by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Starting to integrate.
Need to get the pragma recognised and set
- - - - -
aa77d369 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Make cppTokens extend to end of line, and process CPP comments
- - - - -
37db0bc2 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Remove unused ITcppDefined
- - - - -
7dea3b38 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Allow spaces between # and keyword for preprocessor directive
- - - - -
734a2ab1 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Process CPP continuation lines
They are emited as separate ITcppContinue tokens.
Perhaps the processing should be more like a comment, and keep on
going to the end.
BUT, the last line needs to be slurped as a whole.
- - - - -
93670226 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Accumulate CPP continuations, process when ready
Can be simplified further, we only need one CPP token
- - - - -
def7f26c by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Simplify Lexer interface. Only ITcpp
We transfer directive lines through it, then parse them from scratch
in the preprocessor.
- - - - -
6687af21 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Deal with directive on last line, with no trailing \n
- - - - -
f3dcbbe2 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Start parsing and processing the directives
- - - - -
c8c18df2 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Prepare for processing include files
- - - - -
1e58b97b by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Move PpState into PreProcess
And initParserState, initPragState too
- - - - -
9a5b614b by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Process nested include files
Also move PpState out of Lexer.x, so it is easy to evolve it in a ghci
session, loading utils/check-cpp/Main.hs
- - - - -
ff283bf9 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Split into separate files
- - - - -
cf549d60 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Starting on expression parser.
But it hangs. Time for Text.Parsec.Expr
- - - - -
1de1ce8c by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Start integrating the ghc-cpp work
>From https://github.com/alanz/ghc-cpp
- - - - -
34161c4a by Alan Zimmerman at 2025-02-22T11:40:12+00:00
WIP
- - - - -
ea050228 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Fixup after rebase
- - - - -
1d0c8070 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
WIP
- - - - -
62f17f0c by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Fixup after rebase, including all tests pass
- - - - -
0e84ebea by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Change pragma usage to GHC_CPP from GhcCPP
- - - - -
c19fd1db by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Some comments
- - - - -
553a3a08 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Reformat
- - - - -
552733e9 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Delete unused file
- - - - -
4247116c by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Rename module Parse to ParsePP
- - - - -
1c6d8b44 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Clarify naming in the parser
- - - - -
b5258042 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
WIP. Switching to alex/happy to be able to work in-tree
Since Parsec is not available
- - - - -
e3f74649 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Layering is now correct
- GHC lexer, emits CPP tokens
- accumulated in Preprocessor state
- Lexed by CPP lexer, CPP command extracted, tokens concated with
spaces (to get rid of token pasting via comments)
- if directive lexed and parsed by CPP lexer/parser, and evaluated
- - - - -
4687c89c by Alan Zimmerman at 2025-02-22T11:40:12+00:00
First example working
Loading Example1.hs into ghci, getting the right results
```
{-# LANGUAGE GHC_CPP #-}
module Example1 where
y = 3
x =
"hello"
"bye now"
foo = putStrLn x
```
- - - - -
3e6963e4 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Rebase, and all tests pass except whitespace for generated parser
- - - - -
c9732cd2 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
More plumbing. Ready for testing tomorrow.
- - - - -
e6ef0d69 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Proress. Renamed module State from Types
And at first blush it seems to handle preprocessor scopes properly.
- - - - -
9f66c275 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Insert basic GHC version macros into parser
__GLASGOW_HASKELL__
__GLASGOW_HASKELL_FULL_VERSION__
__GLASGOW_HASKELL_PATCHLEVEL1__
__GLASGOW_HASKELL_PATCHLEVEL2__
- - - - -
d7da16c0 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Re-sync check-cpp for easy ghci work
- - - - -
a9cdb529 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Get rid of warnings
- - - - -
229b8516 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Rework macro processing, in check-cpp
Macros kept at the top level, looked up via name, multiple arity
versions per name can be stored
- - - - -
e210157c by Alan Zimmerman at 2025-02-22T11:40:12+00:00
WIP. Can crack arguments for #define
Next step it to crack out args in an expansion
- - - - -
5e2e6441 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
WIP on arg parsing.
- - - - -
9c5094f5 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Progress. Still screwing up nested parens.
- - - - -
a8a6e9a3 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Seems to work, but has redundant code
- - - - -
1d85b339 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Remove redundant code
- - - - -
059555db by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Reformat
- - - - -
eb364a5e by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Expand args, single pass
Still need to repeat until fixpoint
- - - - -
c0a05a77 by Alan Zimmerman at 2025-02-22T11:40:12+00:00
Fixed point expansion
- - - - -
c49d7ed1 by Alan Zimmerman at 2025-02-22T11:40:13+00:00
Sync the playground to compiler
- - - - -
cab80d71 by Alan Zimmerman at 2025-02-22T11:40:13+00:00
Working on dumping the GHC_CPP result
But We need to keep the BufSpan in a comment
- - - - -
c0619916 by Alan Zimmerman at 2025-02-22T11:40:13+00:00
Keep BufSpan in queued comments in GHC.Parser.Lexer
- - - - -
dcae82d8 by Alan Zimmerman at 2025-02-22T11:40:13+00:00
Getting close to being able to print the combined tokens
showing what is in and what is out
- - - - -
c5575e75 by Alan Zimmerman at 2025-02-22T11:40:13+00:00
First implementation of dumpGhcCpp.
Example output
First dumps all macros in the state, then the source, showing which
lines are in and which are out
------------------------------
- |#define FOO(A,B) A + B
- |#define FOO(A,B,C) A + B + C
- |#if FOO(1,FOO(3,4)) == 8
- |-- a comment
|x = 1
- |#else
- |x = 5
- |#endif
- - - - -
eefa5979 by Alan Zimmerman at 2025-02-22T11:40:13+00:00
Clean up a bit
- - - - -
2cfc617c by Alan Zimmerman at 2025-02-22T11:40:13+00:00
Add -ddump-ghc-cpp option and a test based on it
- - - - -
fc5deeb4 by Alan Zimmerman at 2025-02-22T15:23:56+00:00
Restore Lexer.x rules, we need them for continuation lines
- - - - -
8c9d25ba by Alan Zimmerman at 2025-02-22T16:33:10+00:00
Lexer.x: trying to sort out the span for continuations
- We need to match on \n at the end of the line
- We cannot simply back up for it
- - - - -
d3bc176b by Alan Zimmerman at 2025-02-23T10:53:14+00:00
Inserts predefined macros. But does not dump properly
Because the cpp tokens have a trailing newline
- - - - -
157 changed files:
- compiler/GHC.hs
- compiler/GHC/Cmm/Dataflow/Label.hs
- compiler/GHC/Cmm/DebugBlock.hs
- compiler/GHC/Cmm/LayoutStack.hs
- compiler/GHC/Cmm/Lexer.x
- compiler/GHC/Cmm/Parser.y
- compiler/GHC/Cmm/Parser/Monad.hs
- compiler/GHC/CmmToAsm/Reg/Graph/Base.hs
- compiler/GHC/CmmToAsm/Reg/Graph/SpillClean.hs
- compiler/GHC/CmmToAsm/Reg/Graph/SpillCost.hs
- compiler/GHC/CmmToAsm/X86/CodeGen.hs
- compiler/GHC/Core.hs
- compiler/GHC/Core/Coercion.hs
- compiler/GHC/Core/Lint.hs
- compiler/GHC/Core/Opt/Arity.hs
- compiler/GHC/Core/Opt/CallArity.hs
- compiler/GHC/Core/Opt/OccurAnal.hs
- compiler/GHC/Core/Opt/Simplify/Iteration.hs
- compiler/GHC/Core/Opt/Simplify/Utils.hs
- compiler/GHC/Core/Opt/SpecConstr.hs
- compiler/GHC/Core/Unfold.hs
- compiler/GHC/Core/Utils.hs
- compiler/GHC/Data/Graph/Inductive/Graph.hs
- + compiler/GHC/Data/List.hs
- compiler/GHC/Data/List/NonEmpty.hs
- compiler/GHC/Data/Pair.hs
- compiler/GHC/Driver/Backpack.hs
- compiler/GHC/Driver/Config/Parser.hs
- compiler/GHC/Driver/Env.hs
- compiler/GHC/Driver/Flags.hs
- compiler/GHC/Driver/Main.hs
- compiler/GHC/Driver/Make.hs
- compiler/GHC/Driver/Pipeline/Execute.hs
- compiler/GHC/Driver/Session.hs
- compiler/GHC/Hs/Expr.hs
- compiler/GHC/Hs/Utils.hs
- compiler/GHC/HsToCore/ListComp.hs
- compiler/GHC/HsToCore/Match.hs
- compiler/GHC/HsToCore/Match/Literal.hs
- compiler/GHC/HsToCore/Pmc/Solver.hs
- compiler/GHC/HsToCore/Quote.hs
- compiler/GHC/HsToCore/Utils.hs
- compiler/GHC/Iface/Ext/Ast.hs
- compiler/GHC/JS/Ppr.hs
- compiler/GHC/Parser.hs-boot
- compiler/GHC/Parser.y
- compiler/GHC/Parser/Annotation.hs
- compiler/GHC/Parser/HaddockLex.x
- compiler/GHC/Parser/Header.hs
- compiler/GHC/Parser/Lexer.x
- compiler/GHC/Parser/PostProcess.hs
- compiler/GHC/Parser/PostProcess/Haddock.hs
- + compiler/GHC/Parser/PreProcess.hs
- + compiler/GHC/Parser/PreProcess/Eval.hs
- + compiler/GHC/Parser/PreProcess/Lexer.x
- + compiler/GHC/Parser/PreProcess/Macro.hs
- + compiler/GHC/Parser/PreProcess/ParsePP.hs
- + compiler/GHC/Parser/PreProcess/Parser.y
- + compiler/GHC/Parser/PreProcess/ParserM.hs
- + compiler/GHC/Parser/PreProcess/State.hs
- compiler/GHC/Parser/Utils.hs
- compiler/GHC/Prelude/Basic.hs
- compiler/GHC/Rename/Expr.hs
- compiler/GHC/Rename/Utils.hs
- compiler/GHC/Stg/Lift/Analysis.hs
- compiler/GHC/StgToByteCode.hs
- compiler/GHC/StgToCmm/Layout.hs
- compiler/GHC/StgToCmm/Prim.hs
- compiler/GHC/StgToJS/Expr.hs
- compiler/GHC/SysTools/Cpp.hs
- compiler/GHC/Tc/Deriv/Functor.hs
- compiler/GHC/Tc/Deriv/Generate.hs
- compiler/GHC/Tc/Deriv/Generics.hs
- compiler/GHC/Tc/Errors/Ppr.hs
- compiler/GHC/Tc/Errors/Types.hs
- compiler/GHC/Tc/Gen/Bind.hs
- compiler/GHC/Tc/Gen/Default.hs
- compiler/GHC/Tc/Gen/Match.hs
- compiler/GHC/Tc/Solver/Default.hs
- compiler/GHC/Tc/Solver/Dict.hs
- compiler/GHC/Tc/Solver/InertSet.hs
- compiler/GHC/Tc/Solver/Monad.hs
- compiler/GHC/Tc/Solver/Solve.hs
- compiler/GHC/Tc/Utils/Unify.hs
- compiler/GHC/Tc/Zonk/Type.hs
- compiler/GHC/ThToHs.hs
- compiler/GHC/Types/Demand.hs
- compiler/GHC/Types/Error/Codes.hs
- compiler/GHC/Types/Name.hs
- compiler/GHC/Unit/Finder.hs
- compiler/GHC/Unit/Module/Graph.hs
- compiler/GHC/Utils/Binary.hs
- compiler/GHC/Utils/Misc.hs
- compiler/Language/Haskell/Syntax/Expr.hs
- compiler/ghc.cabal.in
- docs/users_guide/9.14.1-notes.rst
- docs/users_guide/debugging.rst
- ghc/GHCi/UI.hs
- hadrian/src/Rules/SourceDist.hs
- hadrian/stack.yaml.lock
- libraries/ghc-internal/src/GHC/Internal/LanguageExtensions.hs
- rts/Interpreter.c
- rts/linker/MachO.c
- testsuite/driver/testlib.py
- testsuite/tests/count-deps/CountDepsAst.stdout
- testsuite/tests/count-deps/CountDepsParser.stdout
- testsuite/tests/driver/T4437.hs
- testsuite/tests/ghc-api/T11579.hs
- + testsuite/tests/ghc-cpp/GhcCpp01.hs
- + testsuite/tests/ghc-cpp/GhcCpp01.stderr
- + testsuite/tests/ghc-cpp/all.T
- testsuite/tests/interface-stability/template-haskell-exports.stdout
- testsuite/tests/linters/notes.stdout
- + testsuite/tests/perf/compiler/T25723.hs
- + testsuite/tests/perf/compiler/T25723.stdout
- testsuite/tests/perf/compiler/all.T
- testsuite/tests/primops/should_run/all.T
- testsuite/tests/rts/all.T
- testsuite/tests/simplCore/should_compile/T24229a.stderr
- testsuite/tests/simplCore/should_compile/T24229b.stderr
- + testsuite/tests/th/EmptyParStmt.hs
- + testsuite/tests/th/EmptyParStmt.stderr
- testsuite/tests/th/all.T
- + testsuite/tests/typecheck/should_compile/T25744.hs
- testsuite/tests/typecheck/should_compile/all.T
- + utils/check-cpp/.ghci
- + utils/check-cpp/.gitignore
- + utils/check-cpp/Eval.hs
- + utils/check-cpp/Example1.hs
- + utils/check-cpp/Example2.hs
- + utils/check-cpp/Lexer.x
- + utils/check-cpp/Macro.hs
- + utils/check-cpp/Main.hs
- + utils/check-cpp/ParsePP.hs
- + utils/check-cpp/ParseSimulate.hs
- + utils/check-cpp/Parser.y
- + utils/check-cpp/ParserM.hs
- + utils/check-cpp/PreProcess.hs
- + utils/check-cpp/README.md
- + utils/check-cpp/State.hs
- + utils/check-cpp/run.sh
- utils/check-exact/Main.hs
- utils/check-exact/Parsers.hs
- utils/check-exact/Preprocess.hs
- utils/check-exact/Utils.hs
- − utils/deriveConstants/Makefile
- − utils/genprimopcode/Makefile
- − utils/ghc-pkg/Makefile
- utils/haddock/haddock-api/src/Haddock/Backends/Hyperlinker/Parser.hs
- utils/haddock/haddock-api/src/Haddock/Parser.hs
- utils/haddock/haddock-api/src/Haddock/Types.hs
- − utils/hp2ps/Makefile
- utils/hp2ps/Utilities.c
- − utils/iserv/Makefile
- − utils/remote-iserv/Makefile
- − utils/runghc/Makefile
- − utils/unlit/Makefile
The diff was not included because it is too large.
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/f79d3f62fee919e7f495affd4dec5e02f174a2c9...d3bc176bb1765473511f3465430264ec494805e8
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/f79d3f62fee919e7f495affd4dec5e02f174a2c9...d3bc176bb1765473511f3465430264ec494805e8
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20250223/47a7cb5d/attachment-0001.html>
More information about the ghc-commits
mailing list