mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 15:17:25 +00:00
Rename and reorder the arguments to isImpliedCond, for consistency and clarity.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110750 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -352,10 +352,11 @@ namespace llvm {
|
||||
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.
|
||||
bool isImpliedCond(Value *Cond, ICmpInst::Predicate Pred,
|
||||
/// isImpliedCond - Test whether the condition described by Pred, LHS, and
|
||||
/// RHS is true whenever the given FoundCondValue value evaluates to true.
|
||||
bool isImpliedCond(ICmpInst::Predicate Pred,
|
||||
const SCEV *LHS, const SCEV *RHS,
|
||||
Value *FoundCondValue,
|
||||
bool Inverse);
|
||||
|
||||
/// isImpliedCondOperands - Test whether the condition described by Pred,
|
||||
|
||||
Reference in New Issue
Block a user