Fix coding style; NFC

Avoid variables starting with lowercase.

llvm-svn: 280048
This commit is contained in:
Sanjoy Das 2016-08-30 01:38:59 +00:00
parent 79185d80dc
commit 6d3c9132e3
1 changed files with 2 additions and 4 deletions

View 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: