-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[clang][CompundLiteralExpr] Don't defer evaluation for CLEs #137163
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
Merged
Merged
Changes from 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
3453a39
[clang][CompundLiteralExpr] Don't defer evaluation for CLEs
kadircet bc2188c
Address comments
kadircet 50865b1
Get rid of redundant volatile check
kadircet f67d035
add new test cases
kadircet 0caa8a5
Add a fixme for using appropraite context
kadircet 81ad962
fix windows tests
kadircet 6572cb8
fix windows tests - take2
kadircet 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| // FIXME: These test cases currently crash during codegen, despite initializers | ||
| // for CLEs being constant. | ||
| // RUN: not --crash %clang_cc1 -verify -std=c++20 -emit-llvm %s | ||
| // expected-no-diagnostics | ||
| namespace case1 { | ||
| struct RR { int&& r; }; | ||
| struct Z { RR* x; }; | ||
| constinit Z z = { (RR[1]){1} }; | ||
| } | ||
|
|
||
|
|
||
| namespace case2 { | ||
| struct RR { int r; }; | ||
| struct Z { int x; const RR* y; int z; }; | ||
| inline int f() { return 0; } | ||
| Z z2 = { 10, (const RR[1]){__builtin_constant_p(z2.x)}, z2.y->r+f() }; | ||
| } |
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,9 @@ | ||
| // Test that we can successfully compile this code, especially under ASAN. | ||
| // RUN: %clang_cc1 -emit-llvm -std=c++20 %s -o- | FileCheck %s | ||
| struct RR { int r; }; | ||
| struct Z { int x; const RR* y; int z; }; | ||
| constinit Z z = { 10, (const RR[1]){__builtin_constant_p(z.x)}, z.y->r }; | ||
| // Check that we zero-initialize z.y->r. | ||
| // CHECK: @.compoundliteral = internal constant [1 x %struct.RR] zeroinitializer | ||
| // FIXME: Despite of z.y->r being 0, we evaluate z.z to 1. | ||
| // CHECK: @z = global %struct.Z { i32 10, ptr @.compoundliteral, i32 1 } |
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,12 @@ | ||
| // Test that we can successfully compile this code, especially under ASAN. | ||
| // RUN: %clang_cc1 -verify -std=c++20 -fsyntax-only %s | ||
| // expected-no-diagnostics | ||
| struct Foo { | ||
| Foo* f; | ||
| operator bool() const { return true; } | ||
| }; | ||
| constexpr Foo f((Foo[]){}); | ||
| int foo() { | ||
| if (Foo(*f.f)) return 1; | ||
| return 0; | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.