[llvm] [AMDGPU] Simplify Waitcnt constructor. NFC. (PR #125672)
Jay Foad via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 4 03:15:51 PST 2025
https://github.com/jayfoad created https://github.com/llvm/llvm-project/pull/125672
None
>From 9132e015d681e43ddcb07fbae2065358d3836e5c Mon Sep 17 00:00:00 2001
From: Jay Foad <jay.foad at amd.com>
Date: Tue, 4 Feb 2025 11:01:10 +0000
Subject: [PATCH] [AMDGPU] Simplify Waitcnt constructor. NFC.
---
llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h b/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
index fad7e67ff3c763d..67bebfb3418d5b5 100644
--- a/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
+++ b/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
@@ -976,8 +976,7 @@ struct Waitcnt {
Waitcnt() = default;
// Pre-gfx12 constructor.
Waitcnt(unsigned VmCnt, unsigned ExpCnt, unsigned LgkmCnt, unsigned VsCnt)
- : LoadCnt(VmCnt), ExpCnt(ExpCnt), DsCnt(LgkmCnt), StoreCnt(VsCnt),
- SampleCnt(~0u), BvhCnt(~0u), KmCnt(~0u) {}
+ : LoadCnt(VmCnt), ExpCnt(ExpCnt), DsCnt(LgkmCnt), StoreCnt(VsCnt) {}
// gfx12+ constructor.
Waitcnt(unsigned LoadCnt, unsigned ExpCnt, unsigned DsCnt, unsigned StoreCnt,
More information about the llvm-commits
mailing list