[llvm] [AMDGPU] Add a new function `getIntegerPairAttribute` (PR #133271)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 17:50:18 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) {
----------------
arsenm wrote:
Title doesn't match content, we already have getIntegerPairAttribute
https://github.com/llvm/llvm-project/pull/133271
More information about the llvm-commits
mailing list