diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2013-07-20 23:23:47 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2013-07-20 23:23:47 +0000 |
commit | e62f211b777cc2113652f2afd3486aea57d46f24 (patch) | |
tree | adf89150ae3d284ffd60aa4729b31ff5779e84b8 /llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp | |
parent | b3e8e6f10b9ca9cc1b6027e2660ed02df8ad8648 (diff) | |
download | bcm5719-llvm-e62f211b777cc2113652f2afd3486aea57d46f24.tar.gz bcm5719-llvm-e62f211b777cc2113652f2afd3486aea57d46f24.zip |
Rename constructor parameters to follow the common member-shadowing
pattern and conform to the naming conventions.
llvm-svn: 186776
Diffstat (limited to 'llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp b/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp index e985bf6b57f..ef1b55a3487 100644 --- a/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp +++ b/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp @@ -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(); |