Skip to content

[clang][ExprConst] Check for array size of initlists #138673

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 2 commits into from
May 9, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update constant-expression-cxx2a.cpp
  • Loading branch information
tbaederr authored May 8, 2025
commit 92a4d685e05a8a7b20a6abab6360fa799839f5ca
2 changes: 1 addition & 1 deletion clang/test/SemaCXX/constant-expression-cxx2a.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1498,7 +1498,7 @@ namespace GH67317 {
__builtin_bit_cast(unsigned char, *new char[3][1]);
};

namespace LargeArrays {
namespace GH138653 {
constexpr unsigned kNumberOfIterations = 2000000;
constexpr unsigned kThreadsNumber = 2 * 8 * 1024;

Expand Down