mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-10-03 12:18:00 +00:00
Fix uses of reserved identifiers starting with an underscore followed by an uppercase letter
This covers essentially all of llvm's headers and libs. One or two weird cases I wasn't sure were worth/appropriate to fix. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232394 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -60,18 +60,18 @@ void StackMapLiveness::getAnalysisUsage(AnalysisUsage &AU) const {
|
||||
}
|
||||
|
||||
/// Calculate the liveness information for the given machine function.
|
||||
bool StackMapLiveness::runOnMachineFunction(MachineFunction &_MF) {
|
||||
bool StackMapLiveness::runOnMachineFunction(MachineFunction &MF) {
|
||||
if (!EnablePatchPointLiveness)
|
||||
return false;
|
||||
|
||||
DEBUG(dbgs() << "********** COMPUTING STACKMAP LIVENESS: "
|
||||
<< _MF.getName() << " **********\n");
|
||||
MF = &_MF;
|
||||
TRI = MF->getSubtarget().getRegisterInfo();
|
||||
DEBUG(dbgs() << "********** COMPUTING STACKMAP LIVENESS: " << MF.getName()
|
||||
<< " **********\n");
|
||||
this->MF = &MF;
|
||||
TRI = MF.getSubtarget().getRegisterInfo();
|
||||
++NumStackMapFuncVisited;
|
||||
|
||||
// Skip this function if there are no patchpoints to process.
|
||||
if (!MF->getFrameInfo()->hasPatchPoint()) {
|
||||
if (!MF.getFrameInfo()->hasPatchPoint()) {
|
||||
++NumStackMapFuncSkipped;
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user