diff options
Diffstat (limited to 'contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp')
-rw-r--r-- | contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp b/contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp index 0f0016f..a04c0ae 100644 --- a/contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp +++ b/contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp @@ -55,7 +55,7 @@ bool OrderedBasicBlock::comesBefore(const Instruction *A, assert(II != IE && "Instruction not found?"); assert((Inst == A || Inst == B) && "Should find A or B"); LastInstFound = II; - return Inst == A; + return Inst != B; } /// \brief Find out whether \p A dominates \p B, meaning whether \p A |