mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Rename constructor parameters to follow the common member-shadowing
pattern and conform to the naming conventions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186776 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
30f23a4782
commit
aff50164eb
@ -223,9 +223,9 @@ struct PromoteMem2Reg {
|
||||
DenseMap<const BasicBlock *, unsigned> BBNumPreds;
|
||||
|
||||
public:
|
||||
PromoteMem2Reg(const std::vector<AllocaInst *> &A, DominatorTree &dt,
|
||||
AliasSetTracker *ast)
|
||||
: Allocas(A), DT(dt), DIB(0), AST(ast) {}
|
||||
PromoteMem2Reg(const std::vector<AllocaInst *> &Allocas, DominatorTree &DT,
|
||||
AliasSetTracker *AST)
|
||||
: Allocas(Allocas), DT(DT), DIB(0), AST(AST) {}
|
||||
~PromoteMem2Reg() { delete DIB; }
|
||||
|
||||
void run();
|
||||
|
Loading…
Reference in New Issue
Block a user