diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-15 16:19:08 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-15 16:19:08 +0000 |
commit | 005752bbe72868b548bba93dbc1ea46ffe8e5b2c (patch) | |
tree | 150f5d8533c92b224aaf2f80b77a1c84052fd456 /include/llvm/Analysis | |
parent | 3181c505348bbfb28623b5fbb8bbb166814545e7 (diff) |
Make getPredecessorWithUniqueSuccessorForBB return the unique successor
in addition to the predecessor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101374 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r-- | include/llvm/Analysis/ScalarEvolution.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Analysis/ScalarEvolution.h b/include/llvm/Analysis/ScalarEvolution.h index c1f39adc8a..837ed40f50 100644 --- a/include/llvm/Analysis/ScalarEvolution.h +++ b/include/llvm/Analysis/ScalarEvolution.h @@ -351,7 +351,8 @@ namespace llvm { /// (which may not be an immediate predecessor) which has exactly one /// successor from which BB is reachable, or null if no such block is /// found. - BasicBlock* getPredecessorWithUniqueSuccessorForBB(BasicBlock *BB); + std::pair<BasicBlock *, BasicBlock *> + getPredecessorWithUniqueSuccessorForBB(BasicBlock *BB); /// isImpliedCond - Test whether the condition described by Pred, LHS, /// and RHS is true whenever the given Cond value evaluates to true. |