[clang] [llvm] [AMDGPU] Introduce asyncmark/wait intrinsics (PR #180467)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Feb 11 21:50:51 PST 2026
================
@@ -946,8 +970,8 @@ class WaitcntBrackets {
// TODO: Could we track SCC alongside SGPRs so it's not longer a special case?
struct VMEMInfo {
- // Scores for all instruction counters.
- std::array<unsigned, NUM_INST_CNTS> Scores = {0};
+ // Scores for all instruction counters. Zero-initialized.
+ CounterValueArray Scores{};
----------------
vporpo wrote:
`{0}` looks like it was wrong, but isn't this an unrelated change ?
https://github.com/llvm/llvm-project/pull/180467
More information about the cfe-commits
mailing list