User Details
User Details
- User Since
- Jun 3 2023, 2:32 PM (16 w, 2 d)
Jun 15 2023
Jun 15 2023
Sinitax retitled D152083: [clang] Warning for incomplete array initializer lists from [clang] Warning for uninitialized elements in fixed-size arrays to [clang] Warning for incomplete array initializer lists.
Jun 12 2023
Jun 12 2023
Sinitax updated the diff for D152083: [clang] Warning for incomplete array initializer lists.
Fix test.
Sinitax updated the diff for D152083: [clang] Warning for incomplete array initializer lists.
Rebase patch against branch main.
Jun 8 2023
Jun 8 2023
Sinitax added a comment to D152083: [clang] Warning for incomplete array initializer lists.
Why do you make this a new warning group instead of just adding it to -Wuninitialized?
I think a separate group is best, since the warning emits false positives: an intentional empty-initialization (such as char buf[BUF_SIZ] = { 0 }) is indistinguishable from unintentionally incomplete initialization (such as int pair[2] = { ENUM_A /*, ENUM_B */ }).
Sinitax updated the diff for D152083: [clang] Warning for incomplete array initializer lists.
Rebased changes onto commit tagged 'llvmorg-17-init', and added release notes.
Sinitax updated the diff for D152083: [clang] Warning for incomplete array initializer lists.
Rename warning to -Wincomplete-array-initializer-list for clarity, and add test case.
Jun 5 2023
Jun 5 2023
Sinitax updated the diff for D152083: [clang] Warning for incomplete array initializer lists.
Apply git-clang-format.
Jun 4 2023
Jun 4 2023
Sinitax updated the diff for D152083: [clang] Warning for incomplete array initializer lists.
Add new warning to its own group.
Jun 3 2023
Jun 3 2023
Sinitax updated the diff for D152083: [clang] Warning for incomplete array initializer lists.
Remove new warning from -Wuninitialized group for backwards-compatibility.
Sinitax retitled D152083: [clang] Warning for incomplete array initializer lists from Warning for uninitialized elements in fixed-size arrays to [clang] Warning for uninitialized elements in fixed-size arrays.
Sinitax requested review of D152083: [clang] Warning for incomplete array initializer lists.