[llvm] [GlobalISel] Change MatchTable entries to 1 byte each (PR #74429)
Pierre van Houtryve via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 6 00:49:17 PST 2023
================
@@ -243,7 +330,7 @@ void MatchTable::emitDeclaration(raw_ostream &OS) const {
if (I->Flags & MatchTableRecord::MTRF_Outdent)
Indentation -= 2;
}
- OS << "};\n";
+ OS << "}; // " << CurrentSize << " bytes\n";
----------------
Pierre-vh wrote:
Is it alright if I just git push that straight away or do I need to do another PR?
https://github.com/llvm/llvm-project/pull/74429
More information about the llvm-commits
mailing list