From: Chris Lattner Date: Sun, 27 Aug 2006 22:31:12 +0000 (+0000) Subject: Fit to 80 cols X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=43d64b85263ea44f021c933f0803198e04e2a76c;p=oota-llvm.git Fit to 80 cols git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29922 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/DataStructure/CallTargets.cpp b/lib/Analysis/DataStructure/CallTargets.cpp index eb1e28dcc69..8b33cb0cb14 100644 --- a/lib/Analysis/DataStructure/CallTargets.cpp +++ b/lib/Analysis/DataStructure/CallTargets.cpp @@ -58,8 +58,10 @@ void CallTargetFinder::findIndTargets(Module &M) } if (N->isComplete() && !IndMap[cs].size()) { ++CompleteEmpty; - std::cerr << "Call site empty: '" << cs.getInstruction()->getName() - << "' In '" << cs.getInstruction()->getParent()->getParent()->getName() + std::cerr << "Call site empty: '" + << cs.getInstruction()->getName() + << "' In '" + << cs.getInstruction()->getParent()->getParent()->getName() << "'\n"; } } else { @@ -74,7 +76,8 @@ void CallTargetFinder::print(std::ostream &O, const Module *M) const { return; O << "[* = incomplete] CS: func list\n"; - for (std::map >::const_iterator ii = IndMap.begin(), + for (std::map >::const_iterator ii = + IndMap.begin(), ee = IndMap.end(); ii != ee; ++ii) { if (!ii->first.getCalledFunction()) { //only print indirect if (!isComplete(ii->first)) {