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 3bc765d commit b7bc1d0Copy full SHA for b7bc1d0
llvm/lib/CodeGen/MachineSSAUpdater.cpp
@@ -286,7 +286,7 @@ class SSAUpdaterTraits<MachineSSAUpdater> {
286
bool operator==(const PHI_iterator& x) const { return idx == x.idx; }
287
bool operator!=(const PHI_iterator& x) const { return !operator==(x); }
288
289
- unsigned getIncomingValue() { return PHI->getOperand(idx).getReg(); }
+ Register getIncomingValue() { return PHI->getOperand(idx).getReg(); }
290
291
MachineBasicBlock *getIncomingBlock() {
292
return PHI->getOperand(idx+1).getMBB();
0 commit comments