forked from OSchip/llvm-project
Fix coding style; NFC
Avoid variables starting with lowercase. llvm-svn: 280048
This commit is contained in:
parent
79185d80dc
commit
6d3c9132e3
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue