~ubuntu-branches/ubuntu/saucy/clamav/saucy-backports

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/include/llvm/Analysis/LoopInfo.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman
  • Date: 2014-07-15 01:08:10 UTC
  • mfrom: (0.35.47 sid)
  • Revision ID: package-import@ubuntu.com-20140715010810-ru66ek4fun2iseba
Tags: 0.98.4+dfsg-2~ubuntu13.10.1
No-change backport to saucy (LP: #1341962)

Show diffs side-by-side

added added

removed removed

Lines of Context:
814
814
        typedef GraphTraits<Inverse<BlockT*> > InvBlockTraits;
815
815
        
816
816
        // Add all of the predecessors of X to the end of the work stack...
817
 
        TodoStack.insert(TodoStack.end(), InvBlockTraits::child_begin(X),
818
 
                         InvBlockTraits::child_end(X));
 
817
        for (typename InvBlockTraits::ChildIteratorType PI =
 
818
              InvBlockTraits::child_begin(X), PE = InvBlockTraits::child_end(X);
 
819
              PI != PE; ++PI) {
 
820
          typename InvBlockTraits::NodeType *N = *PI;
 
821
          TodoStack.push_back(N);
 
822
        }
819
823
      }
820
824
    }
821
825