Fix coding style; NFC
authorSanjoy Das <sanjoy@playingwithpointers.com>
Tue, 30 Aug 2016 01:38:59 +0000 (01:38 +0000)
committerSanjoy Das <sanjoy@playingwithpointers.com>
Tue, 30 Aug 2016 01:38:59 +0000 (01:38 +0000)
Avoid variables starting with lowercase.

llvm-svn: 280048

llvm/lib/CodeGen/TargetInstrInfo.cpp

index 3982e1e..a5d480b 100644 (file)
@@ -439,15 +439,13 @@ static MachineInstr *foldPatchpoint(MachineFunction &MF, MachineInstr &MI,
   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: