[llvm] [TableGen][DecoderEmitter] Add OPC_Scope opcode (PR #155580)
Sergei Barannikov via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 27 02:21:43 PDT 2025
================
@@ -308,21 +306,17 @@ class DecoderTable {
struct DecoderTableInfo {
DecoderTable Table;
- FixupScopeList FixupStack;
+ SmallVector<unsigned, 8> FixupStack;
----------------
s-barannikov wrote:
Since we can only have one fixup location (for the innermost OPC_Scope), we no longer need vector of vectors.
https://github.com/llvm/llvm-project/pull/155580
More information about the llvm-commits
mailing list