[llvm] [TableGen] Emit OpName as an enum class instead of a namespace (PR #125313)
Jay Foad via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 08:38:16 PST 2025
================
@@ -369,20 +369,20 @@ bool SIFoldOperandsImpl::tryFoldImmWithOpSel(FoldCandidate &Fold) const {
// Refer to op_sel/op_sel_hi and check if we can change the immediate and
// op_sel in a way that allows an inline constant.
- int ModIdx = -1;
+ AMDGPU::OpName ModName = AMDGPU::OpName::NUM_OPERAND_NAMES;
----------------
jayfoad wrote:
Splitting ModName from ModIdx makes a lot of sense, thanks.
https://github.com/llvm/llvm-project/pull/125313
More information about the llvm-commits
mailing list