[llvm] [GlobalISel] Change MatchTable entries to 1 byte each (PR #74429)
Wang Pengcheng via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 7 02:06:47 PST 2023
================
@@ -137,7 +189,9 @@ void MatchTableRecord::emit(raw_ostream &OS, bool LineBreakIsNextAfterThis,
if (Flags & MTRF_JumpTarget) {
if (Flags & MTRF_Comment)
OS << " ";
- OS << Table.getLabelIndex(LabelID);
+ // TODO: Could encode this AOT to speed up build of generated file
----------------
wangpc-pp wrote:
Oh, you have added a TODO. :-)
https://github.com/llvm/llvm-project/pull/74429
More information about the llvm-commits
mailing list