[llvm] [CodeGen] Allow larger number of operands to be compiled by SelectionDAG (PR #122737)
Nikolay Panchenko via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 13 14:56:48 PST 2025
================
@@ -652,8 +652,8 @@ END_TWO_BYTE_PACK()
SDUse *UseList = nullptr;
/// The number of entries in the Operand/Value list.
- unsigned short NumOperands = 0;
- unsigned short NumValues;
+ uint32_t NumOperands = 0;
+ uint32_t NumValues;
----------------
npanchen wrote:
sure, I can change it back to unsigned short
https://github.com/llvm/llvm-project/pull/122737
More information about the llvm-commits
mailing list