diff options
author | Ramkumar Ramachandra <artagnon@gmail.com> | 2015-02-25 23:55:00 +0000 |
---|---|---|
committer | Ramkumar Ramachandra <artagnon@gmail.com> | 2015-02-25 23:55:00 +0000 |
commit | f8ea847e482690e35baaad8d7fb8a582fe199db3 (patch) | |
tree | a05a45532dbaae812b01421827c76e54d219cefa /llvm/lib/Analysis/MemDepPrinter.cpp | |
parent | c5b0f56bb80cb43e6130b75d2a10f2a2318b1332 (diff) | |
download | bcm5719-llvm-f8ea847e482690e35baaad8d7fb8a582fe199db3.tar.gz bcm5719-llvm-f8ea847e482690e35baaad8d7fb8a582fe199db3.zip |
MemDepPrinter: Fix some nits introduced in r228596
Differential Revision: http://reviews.llvm.org/D7644
llvm-svn: 230582
Diffstat (limited to 'llvm/lib/Analysis/MemDepPrinter.cpp')
-rw-r--r-- | llvm/lib/Analysis/MemDepPrinter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Analysis/MemDepPrinter.cpp b/llvm/lib/Analysis/MemDepPrinter.cpp index 854197badfb..e1b7b4b8509 100644 --- a/llvm/lib/Analysis/MemDepPrinter.cpp +++ b/llvm/lib/Analysis/MemDepPrinter.cpp @@ -96,7 +96,7 @@ bool MemDepPrinter::runOnFunction(Function &F) { // All this code uses non-const interfaces because MemDep is not // const-friendly, though nothing is actually modified. - for (auto &I: inst_range(F)) { + for (auto &I : inst_range(F)) { Instruction *Inst = &I; if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) @@ -135,7 +135,7 @@ bool MemDepPrinter::runOnFunction(Function &F) { } void MemDepPrinter::print(raw_ostream &OS, const Module *M) const { - for (auto &I: inst_range(*F)) { + for (const auto &I : inst_range(*F)) { const Instruction *Inst = &I; DepSetMap::const_iterator DI = Deps.find(Inst); @@ -144,7 +144,7 @@ void MemDepPrinter::print(raw_ostream &OS, const Module *M) const { const DepSet &InstDeps = DI->second; - for (auto &I: InstDeps) { + for (const auto &I : InstDeps) { const Instruction *DepInst = I.first.getPointer(); DepType type = I.first.getInt(); const BasicBlock *DepBB = I.second; |