diff options
author | Fangrui Song <maskray@google.com> | 2018-07-16 18:51:40 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2018-07-16 18:51:40 +0000 |
commit | cb0bab86b3f47c82ce415a5e7d12849dbdd58699 (patch) | |
tree | fa3d88a9a60bd01535535cd6d14849a3a3ff2711 /llvm/lib/CodeGen/GCRootLowering.cpp | |
parent | b05be5f4b4cc5d426dd8ee7aac8b83556453a766 (diff) | |
download | bcm5719-llvm-cb0bab86b3f47c82ce415a5e7d12849dbdd58699.tar.gz bcm5719-llvm-cb0bab86b3f47c82ce415a5e7d12849dbdd58699.zip |
[CodeGen] Fix inconsistent declaration parameter name
llvm-svn: 337200
Diffstat (limited to 'llvm/lib/CodeGen/GCRootLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/GCRootLowering.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/GCRootLowering.cpp b/llvm/lib/CodeGen/GCRootLowering.cpp index 4361d8b248c..31ddeadbd97 100644 --- a/llvm/lib/CodeGen/GCRootLowering.cpp +++ b/llvm/lib/CodeGen/GCRootLowering.cpp @@ -38,7 +38,7 @@ namespace { /// directed by the GCStrategy. It also performs automatic root initialization /// and custom intrinsic lowering. class LowerIntrinsics : public FunctionPass { - bool PerformDefaultLowering(Function &F, GCStrategy &Coll); + bool PerformDefaultLowering(Function &F, GCStrategy &S); public: static char ID; @@ -61,7 +61,7 @@ class GCMachineCodeAnalysis : public MachineFunctionPass { const TargetInstrInfo *TII; void FindSafePoints(MachineFunction &MF); - void VisitCallPoint(MachineBasicBlock::iterator MI); + void VisitCallPoint(MachineBasicBlock::iterator CI); MCSymbol *InsertLabel(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const DebugLoc &DL) const; |