From: Ramkumar Ramachandra Date: Wed, 25 Feb 2015 23:55:00 +0000 (+0000) Subject: MemDepPrinter: Fix some nits introduced in r228596 X-Git-Tag: llvmorg-3.7.0-rc1~10831 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f8ea847e482690e35baaad8d7fb8a582fe199db3;p=platform%2Fupstream%2Fllvm.git MemDepPrinter: Fix some nits introduced in r228596 Differential Revision: http://reviews.llvm.org/D7644 llvm-svn: 230582 --- diff --git a/llvm/lib/Analysis/MemDepPrinter.cpp b/llvm/lib/Analysis/MemDepPrinter.cpp index 854197b..e1b7b4b 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;