[llvm] [LLVM] Add HasFakeUses to MachineFunction (PR #110097)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 30 01:34:06 PDT 2024


================
@@ -525,6 +525,7 @@ MIRParserImpl::initializeMachineFunction(const yaml::MachineFunction &YamlMF,
   MF.setHasEHCatchret(YamlMF.HasEHCatchret);
   MF.setHasEHScopes(YamlMF.HasEHScopes);
   MF.setHasEHFunclets(YamlMF.HasEHFunclets);
+  MF.setHasFakeUses(YamlMF.HasFakeUses);
----------------
arsenm wrote:

Missing detection of this from the instruction stream, like we do for no-vregs and is-ssa 

https://github.com/llvm/llvm-project/pull/110097


More information about the llvm-commits mailing list