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()) {
|
switch (MI.getOpcode()) {
|
||||||
case TargetOpcode::STACKMAP: {
|
case TargetOpcode::STACKMAP: {
|
||||||
// StackMapLiveValues are foldable
|
// StackMapLiveValues are foldable
|
||||||
StackMapOpers opers(&MI);
|
StartIdx = StackMapOpers(&MI).getVarIdx();
|
||||||
StartIdx = opers.getVarIdx();
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case TargetOpcode::PATCHPOINT: {
|
case TargetOpcode::PATCHPOINT: {
|
||||||
// For PatchPoint, the call args are not foldable (even if reported in the
|
// For PatchPoint, the call args are not foldable (even if reported in the
|
||||||
// stackmap e.g. via anyregcc).
|
// stackmap e.g. via anyregcc).
|
||||||
PatchPointOpers opers(&MI);
|
StartIdx = PatchPointOpers(&MI).getVarIdx();
|
||||||
StartIdx = opers.getVarIdx();
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in New Issue