[llvm] [AMDGPU] Add a new function `getIntegerPairAttribute` (PR #133271)
Shilei Tian via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 17:56:26 PDT 2025
================
@@ -1398,16 +1398,25 @@ getIntegerPairAttribute(const Function &F, StringRef Name,
SmallVector<unsigned> getIntegerVecAttribute(const Function &F, StringRef Name,
unsigned Size,
unsigned DefaultVal) {
+ std::optional<SmallVector<unsigned>> R =
+ getIntegerVecAttribute(F, Name, Size);
+ return R.has_value() ? *R : SmallVector<unsigned>(Size, DefaultVal);
+}
+
+std::optional<SmallVector<unsigned>>
+getIntegerVecAttribute(const Function &F, StringRef Name, unsigned Size) {
----------------
shiltian wrote:
I don't follow. This is for `getIntegerVecAttribute`.
https://github.com/llvm/llvm-project/pull/133271
More information about the llvm-commits
mailing list