[PATCH] D111397: Add new MachineFunction property FailsVerification
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 18 09:46:16 PDT 2021
arsenm added inline comments.
================
Comment at: llvm/include/llvm/CodeGen/MIRYamlMapping.h:726
YamlIO.mapOptional("hasWinCFI", MF.HasWinCFI, false);
+ YamlIO.mapOptional("failsVerification", MF.FailsVerification, false);
YamlIO.mapOptional("registers", MF.VirtualRegisters,
----------------
This should not need explicit serialization. The verifier runs after mir parsing anyway.
It should also be illegal to clear this after it’s set
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111397/new/
https://reviews.llvm.org/D111397
More information about the llvm-commits
mailing list