-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[Clang] Partial implementation of support for P3074 (trivial unions) #146815
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
brevzin
wants to merge
12
commits into
llvm:main
Choose a base branch
from
brevzin:p3074-pt2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
40290a9
[P3074] Implementing part of trivial unions
brevzin 59b0649
Adding test case that I have to fix still
brevzin e7cc4ec
One down
brevzin 5eb68c5
More accurate
brevzin 80e2476
Test fixup
brevzin 9972d7e
Uh... this cannot be right
brevzin c2f3a05
More test fixups
brevzin 1283ddb
What, really, this is good?
brevzin eed0988
I don't think the other cases make sense, given that we have a field
brevzin 64babbc
PR feedback
brevzin 23bf694
PR feedback
brevzin 8aebb45
PR feedback
brevzin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| // RUN: %clang_cc1 -verify -std=c++26 %s -Wno-defaulted-function-deleted -triple x86_64-linux-gnu | ||
|
|
||
| struct NonTrivial { | ||
brevzin marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| NonTrivial(int) { } | ||
| ~NonTrivial() { } | ||
| }; | ||
|
|
||
| union U0 { | ||
| NonTrivial nt; | ||
| int i; | ||
| }; | ||
| U0 u0; | ||
|
|
||
| // overload resolution to select a constructor to default-initialize an object of type X either fails | ||
| union U1 { | ||
| U1(int); | ||
| NonTrivial nt; | ||
| }; | ||
| U1 u1(1); // expected-error {{deleted destructor}} | ||
|
|
||
| // or selects a constructor that is either deleted or not trivial, or | ||
| union U2 { | ||
| U2() : nt(2) { } | ||
| NonTrivial nt; | ||
| }; | ||
| U2 u2; // expected-error {{deleted destructor}} | ||
|
|
||
| union U3 { | ||
| U3() = delete; | ||
| U3(int); | ||
| NonTrivial nt; | ||
| }; | ||
| U3 u3(1); // expected-error {{deleted destructor}} | ||
|
|
||
| // or X has a variant member V of class type M (or possibly multi-dimensional array thereof) where V has a default member initializer and M has a destructor that is non-trivial, | ||
brevzin marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| union U4 { | ||
| NonTrivial nt = 1; | ||
| }; | ||
| U4 u4; // expected-error {{deleted destructor}} | ||
|
|
||
| union U5 { | ||
| NonTrivial nt; | ||
| U5* next = nullptr; | ||
| }; | ||
| U5 u5; | ||
|
|
||
|
|
||
|
|
||
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit (we typically don’t use top-level const for local vars)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not? I see a lot of them btw.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought it was in our coding standards because I’m used to people pointing this out all the time but https://llvm.org/docs/CodingStandards.html doesn’t seem to have anything to say about it.