[llvm] [MVT][TableGen] Extend Machine Value Type to `uint16_t` (PR #99657)
Brandon Wu via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 30 18:28:49 PDT 2024
================
@@ -79,12 +79,12 @@ static void VTtoGetLLVMTyString(raw_ostream &OS, const Record *VT) {
void VTEmitter::run(raw_ostream &OS) {
emitSourceFileHeader("ValueTypes Source Fragment", OS, Records);
- std::array<const Record *, 256> VTsByNumber = {};
+ std::array<const Record *, 65536> VTsByNumber = {};
----------------
4vtomat wrote:
Sure~
https://github.com/llvm/llvm-project/pull/99657
More information about the llvm-commits
mailing list