aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/SplitKit.cpp
diff options
context:
space:
mode:
authorJay Foad <jay.foad@amd.com>2023-02-03 09:42:25 +0000
committerJay Foad <jay.foad@amd.com>2023-02-07 11:50:57 +0000
commitd170a254a53bce54596ed0f94aa86ffa3eede42b (patch)
treea910e6d7c653f66b9435f0a28d58115de4e4a472 /llvm/lib/CodeGen/SplitKit.cpp
parent3d6b108a87cc017faf27824b82b90d9aaea707ca (diff)
downloadllvm-d170a254a53bce54596ed0f94aa86ffa3eede42b.zip
llvm-d170a254a53bce54596ed0f94aa86ffa3eede42b.tar.gz
llvm-d170a254a53bce54596ed0f94aa86ffa3eede42b.tar.bz2
[CodeGen] Define and use MachineOperand::getOperandNo
This is a helper function to very slightly simplify many calls to MachineInstruction::getOperandNo. Differential Revision: https://reviews.llvm.org/D143250
Diffstat (limited to 'llvm/lib/CodeGen/SplitKit.cpp')
-rw-r--r--llvm/lib/CodeGen/SplitKit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SplitKit.cpp b/llvm/lib/CodeGen/SplitKit.cpp
index 92e820c..eee54f0 100644
--- a/llvm/lib/CodeGen/SplitKit.cpp
+++ b/llvm/lib/CodeGen/SplitKit.cpp
@@ -1365,7 +1365,7 @@ void SplitEditor::rewriteAssigned(bool ExtendRanges) {
// The point we want to extend is 0d to 16e not 16r in this case, but if
// we use 16r here we will extend nothing because that already contained
// in [16e, 32d).
- unsigned OpIdx = MI->getOperandNo(&MO);
+ unsigned OpIdx = MO.getOperandNo();
unsigned DefOpIdx = MI->findTiedOperandIdx(OpIdx);
const MachineOperand &DefOp = MI->getOperand(DefOpIdx);
IsEarlyClobber = DefOp.isEarlyClobber();