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 930dfa4 commit 5b57103Copy full SHA for 5b57103
llvm/lib/Target/AMDGPU/GCNRewritePartialRegUses.cpp
@@ -493,8 +493,9 @@ bool GCNRewritePartialRegUsesImpl::run(MachineFunction &MF) {
493
}
494
495
bool GCNRewritePartialRegUsesLegacy::runOnMachineFunction(MachineFunction &MF) {
496
- auto *LISWrapper = getAnalysisIfAvailable<LiveIntervalsWrapperPass>();
497
- auto LIS = LISWrapper ? &LISWrapper->getLIS() : nullptr;
+ LiveIntervalsWrapperPass *LISWrapper =
+ getAnalysisIfAvailable<LiveIntervalsWrapperPass>();
498
+ LiveIntervals *LIS = LISWrapper ? &LISWrapper->getLIS() : nullptr;
499
GCNRewritePartialRegUsesImpl Impl(LIS);
500
return Impl.run(MF);
501
0 commit comments