Translate _d_arraysetassign to a template#14382
Merged
RazvanN7 merged 1 commit intodlang:masterfrom Sep 15, 2022
Merged
Conversation
Contributor
|
Thanks for your pull request, @teodutu! Bugzilla referencesYour PR doesn't reference any Bugzilla issue. If your PR contains non-trivial changes, please reference a Bugzilla issue or create a manual changelog. Testing this PR locallyIf you don't have a local development environment setup, you can use Digger to test this PR: dub run digger -- build "master + dmd#14382" |
ab6a4c8 to
37a53df
Compare
ntrel
reviewed
Sep 4, 2022
ibuclaw
reviewed
Sep 4, 2022
37a53df to
aa83d13
Compare
- Implement template `_d_arraysetassign` - Lower array asignments to a single element to the above template - Remove old lowering from e2ir.d - Remove the old `_d_arraysetassign` hook and its file rt/arrayassign.d - Add test for assigning a struct with a `@disabled` postblit Signed-off-by: Teodor Dutu <teodor.dutu@gmail.com>
aa83d13 to
12eba10
Compare
nybzmr
added a commit
to nybzmr/dmd
that referenced
this pull request
Mar 19, 2025
thewilsonator
pushed a commit
that referenced
this pull request
Mar 19, 2025
* Remove RTLSYM for Translation PR #15819: Removed NEWARRAYMITX, NEWARRAYMITX, TRACENEWARRAYMTX and TRACENEWARRAYMITX * Remove RTLSYM for Translation PR #15299: Removed NEWARRAYT, NEWARRAYIT, TRACENEWARRAYT and TRACENEWARRAYIT * Remove RTLSYM for Translation PR #14837: Removed NEWCLASS, TRACENEWCLASS * Remove RTLSYM for Translation PR #14664: Removed NEWITEMT, NEWITEMIT, TRACENEWITEMT and TRACENEWITEMIT * Remove RTLSYM for Translation PR #14550: Removed ARRAYCATNTX, ARRAYCATT, TRACEARRAYCATNTX and TRACEARRAYCATT * Remove RTLSYM for Translation PR #14382: Removed ARRAYSETASSIGN * Remove RTLSYM for Translation PR #14310: Removed ARRAYASSIGN * Remove RTLSYM for Translation PR #13495: Removed ARRAYAPPENDT, ARRAYAPPENDCTX, TRACEARRAYAPPENDT and TRACEARRAYAPPENDCTX
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.
_d_arraysetassign_d_arraysetassignhook and its file rt/arrayassign.dThis follows the implementation of the template
_d_arrayassign_{l,r}hooks: #14310.