wrap a long line
authorChris Lattner <sabre@nondot.org>
Wed, 23 Mar 2005 16:43:11 +0000 (16:43 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 23 Mar 2005 16:43:11 +0000 (16:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20785 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/DataStructure.cpp

index 2ec0e3fc6bb450eb6bf97cf41810b35f34612d97..2f6fde89033a34083102fe1cfeea674d57eb8556 100644 (file)
@@ -1329,7 +1329,8 @@ static bool PathExistsToClonedNode(const DSCallSite &CS,
 void DSGraph::getFunctionArgumentsForCall(Function *F,
                                        std::vector<DSNodeHandle> &Args) const {
   Args.push_back(getReturnNodeFor(*F));
-  for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E; ++AI)
+  for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end();
+       AI != E; ++AI)
     if (isPointerType(AI->getType())) {
       Args.push_back(getNodeForValue(AI));
       assert(!Args.back().isNull() && "Pointer argument w/o scalarmap entry!?");