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 f4180db commit 28286f8Copy full SHA for 28286f8
llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
@@ -829,7 +829,7 @@ unsigned AggressiveAntiDepBreaker::BreakAntiDependencies(
829
if ((Edge->getKind() != SDep::Anti) &&
830
(Edge->getKind() != SDep::Output)) continue;
831
832
- MCRegister AntiDepReg = MCRegister::from(Edge->getReg());
+ MCRegister AntiDepReg = Edge->getReg().asMCReg();
833
LLVM_DEBUG(dbgs() << "\tAntidep reg: " << printReg(AntiDepReg, TRI));
834
assert(AntiDepReg && "Anti-dependence on reg0?");
835
0 commit comments