We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d652118 commit 14785d4Copy full SHA for 14785d4
llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
@@ -1719,14 +1719,10 @@ bool GCNTargetMachine::parseMachineFunctionInfo(
1719
}
1720
1721
for (const auto &[_, Info] : PFS.VRegInfosNamed) {
1722
- for (uint8_t Flag : Info->Flags) {
1723
- MFI->setFlag(Info->VReg, Flag);
1724
- }
+ MFI->setFlag(Info->VReg, Info->Flags);
1725
1726
for (const auto &[_, Info] : PFS.VRegInfos) {
1727
1728
1729
1730
1731
1732
auto parseAndCheckArgument = [&](const std::optional<yaml::SIArgument> &A,
0 commit comments