[llvm] [RFC][AMDGPU][InsertWaitCnt] Move WaitEventType into separate HWEvent header (PR #202886)

via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 10 02:37:49 PDT 2026


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp,h -- llvm/lib/Target/AMDGPU/Utils/AMDGPUHWEvents.cpp llvm/lib/Target/AMDGPU/Utils/AMDGPUHWEvents.h llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp --diff_from_common_commit
``````````

:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/llvm/lib/Target/AMDGPU/Utils/AMDGPUHWEvents.h b/llvm/lib/Target/AMDGPU/Utils/AMDGPUHWEvents.h
index 79460a562..9b4548f18 100644
--- a/llvm/lib/Target/AMDGPU/Utils/AMDGPUHWEvents.h
+++ b/llvm/lib/Target/AMDGPU/Utils/AMDGPUHWEvents.h
@@ -47,7 +47,8 @@ static constexpr StringLiteral toString(HWEvent Event) {
 /// and \c MaxEvent (exclusive, default value yields an enumeration over
 /// all counters).
 // NOLINTNEXTLINE
-inline iota_range<HWEvent> hw_events(HWEvent MaxEvent = HWEvent::NUM_WAIT_EVENTS) {
+inline iota_range<HWEvent>
+hw_events(HWEvent MaxEvent = HWEvent::NUM_WAIT_EVENTS) {
   return enum_seq(HWEvent::FIRST_WAIT_EVENT, MaxEvent);
 }
 

``````````

</details>


https://github.com/llvm/llvm-project/pull/202886


More information about the llvm-commits mailing list