Closed
Conversation
Collaborator
|
This looks correct to me. I merged it into my trunk, and also into my D1 branch. |
Member
|
Merged donc's merge |
UplinkCoder
added a commit
to UplinkCoder/dmd
that referenced
this pull request
Aug 13, 2016
UplinkCoder
added a commit
to UplinkCoder/dmd
that referenced
this pull request
Aug 31, 2016
UplinkCoder
added a commit
to UplinkCoder/dmd
that referenced
this pull request
Sep 1, 2016
UplinkCoder
added a commit
to UplinkCoder/dmd
that referenced
this pull request
Sep 4, 2016
UplinkCoder
added a commit
to UplinkCoder/dmd
that referenced
this pull request
Sep 19, 2016
UplinkCoder
added a commit
to UplinkCoder/dmd
that referenced
this pull request
Sep 25, 2016
skl131313
pushed a commit
to skl131313/dmd
that referenced
this pull request
Jan 28, 2017
Fix header generation for module export.
ntrel
added a commit
to ntrel/dmd
that referenced
this pull request
Apr 18, 2025
ntrel
added a commit
to ntrel/dmd
that referenced
this pull request
Apr 27, 2025
gorsing
referenced
this pull request
in gorsing/dmd
Jul 14, 2025
# This is the 1st commit message: refactoring # This is the commit message #2: refactoring # This is the commit message #3: refactoring # This is the commit message #4: refactoring # This is the commit message #5: refactoring # This is the commit message #6: refactoring # This is the commit message #7: refactoring # This is the commit message #8: refactor/irstate-attrs refactoring add pragma(inline, true) change pragma(inline, true) -> pragma(inline, false) introduce root.Array.only and test it out in expressionsem (dlang#21520) [attrib.d] remove unused semantic import [dstruct.d] remove unused import [aggregate.d] move `searchCtor` to `expressionsem.d` remove some now unused semantic symbols from the import list. [cond.d] remove unused `typesem` import (dlang#21538) [expression.d] restrict `typesem` import fix dlang#19587 No debug line info for simple code blocks (dlang#21544) set location info on return statement, not only on return expression [dsymbol.d] remove dependance on glue layer (dlang#21532) move `loadModuleFromLibrary` to `dsymbolsem.d` (dlang#21535) remove `dmodule.d` dependance of a few more `dsymbolsem.d` symbols. [func.d] remove dependance on glue layer (dlang#21534) [aggregate.d] move `checkOverlappedFields` to `dsymbolsem.d` (dlang#21542) and make private Templatize `_adEq2` (dlang#21513) * Mark array literals as `on-stack` to bypass `@nogc` analysis * Update `fail_compilation` test output After updating the memcmp-ability criteria, now dynamic array can also be compared using `memcmp` if their element type is comparable bit by bit. refactor: use new array constructor throughout expressionsem refactoring refactoring refactoring refactoring refactoring refactoring refactoring refactoring refactoring
ntrel
added a commit
to ntrel/dmd
that referenced
this pull request
Nov 14, 2025
ntrel
added a commit
to ntrel/dmd
that referenced
this pull request
Dec 14, 2025
This pull request was closed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Several of the error paths in StructInitializer::semantic fail to set errors which can lead to continuing to work with half built objects.
I'm not sure this is the right fix, but it does fix the segv produced by the dmd failure test fail225.d and doesn't break any existing tests.