Daniel Dunbar aa81380353 ADT: Add ilist_node::get{Prev,Next}Node, which return the adjacent node or null.
- This provides a convenient alternative to using something llvm::prior or
   manual iterator access, for example::

    if (T *Prev = foo->getPrevNode())
      ...

   instead of::

     iterator it(foo);
     if (it != begin()) {
       --it;
       ... 
     }

 - Chris, please review.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103647 91177308-0d34-0410-b5e6-96231b3b80d8
2010-05-12 21:35:19 +00:00
..
2010-03-06 19:20:13 +00:00
2010-02-17 19:26:45 +00:00
2010-04-29 18:50:35 +00:00
2010-04-13 23:34:11 +00:00
2010-02-12 22:34:54 +00:00
2010-04-29 06:43:12 +00:00
2010-02-23 19:15:24 +00:00