[PATCH] D157273: [GlobalISel] Add dead flags to implicit defs in ISel
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 7 09:38:45 PDT 2023
arsenm added inline comments.
================
Comment at: llvm/include/llvm/CodeGen/GlobalISel/GIMatchTableExecutor.h:335
/// - RegNum - The register to add
+ /// - Dead - Whether this is a dead def.
GIR_AddImplicitDef,
----------------
arsenm wrote:
> Can just make the flag value?
actually you can compact the two into one field, register is 32-bits and the flags are 16 I think
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D157273/new/
https://reviews.llvm.org/D157273
More information about the llvm-commits
mailing list