Fix coding style; NFC
Avoid variables starting with lowercase.
llvm-svn: 280048
diff --git a/llvm/lib/CodeGen/TargetInstrInfo.cpp b/llvm/lib/CodeGen/TargetInstrInfo.cpp
index 3982e1e..a5d480b 100644
--- a/llvm/lib/CodeGen/TargetInstrInfo.cpp
+++ b/llvm/lib/CodeGen/TargetInstrInfo.cpp
@@ -439,15 +439,13 @@
switch (MI.getOpcode()) {
case TargetOpcode::STACKMAP: {
// StackMapLiveValues are foldable
- StackMapOpers opers(&MI);
- StartIdx = opers.getVarIdx();
+ StartIdx = StackMapOpers(&MI).getVarIdx();
break;
}
case TargetOpcode::PATCHPOINT: {
// For PatchPoint, the call args are not foldable (even if reported in the
// stackmap e.g. via anyregcc).
- PatchPointOpers opers(&MI);
- StartIdx = opers.getVarIdx();
+ StartIdx = PatchPointOpers(&MI).getVarIdx();
break;
}
default: