[llvm] [llvm/unittests] Reset the IsSSA property when using finalizeBundle() (PR #77469)
Sameer Sahasrabuddhe via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 9 05:28:52 PST 2024
================
@@ -156,6 +156,7 @@ static void testHandleMoveIntoNewBundle(MachineFunction &MF, LiveIntervals &LIS,
// Build bundle
finalizeBundle(MBB, I, std::next(ToInstr.getIterator()));
+ MF.getProperties().reset(MachineFunctionProperties::Property::IsSSA);
----------------
ssahasra wrote:
IsSSA is computed by the MIRParser
https://github.com/llvm/llvm-project/pull/77469
More information about the llvm-commits
mailing list