diff options
author | shadchin <shadchin@yandex-team.ru> | 2022-02-10 16:44:30 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:44:30 +0300 |
commit | 2598ef1d0aee359b4b6d5fdd1758916d5907d04f (patch) | |
tree | 012bb94d777798f1f56ac1cec429509766d05181 /contrib/libs/llvm12/include/llvm/Analysis/LazyValueInfo.h | |
parent | 6751af0b0c1b952fede40b19b71da8025b5d8bcf (diff) | |
download | ydb-2598ef1d0aee359b4b6d5fdd1758916d5907d04f.tar.gz |
Restoring authorship annotation for <shadchin@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/llvm12/include/llvm/Analysis/LazyValueInfo.h')
-rw-r--r-- | contrib/libs/llvm12/include/llvm/Analysis/LazyValueInfo.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/contrib/libs/llvm12/include/llvm/Analysis/LazyValueInfo.h b/contrib/libs/llvm12/include/llvm/Analysis/LazyValueInfo.h index e729bfb6ae..ade4e43345 100644 --- a/contrib/libs/llvm12/include/llvm/Analysis/LazyValueInfo.h +++ b/contrib/libs/llvm12/include/llvm/Analysis/LazyValueInfo.h @@ -78,20 +78,20 @@ public: Instruction *CxtI = nullptr); /// Determine whether the specified value comparison with a constant is known - /// to be true or false at the specified instruction. - /// \p Pred is a CmpInst predicate. If \p UseBlockValue is true, the block - /// value is also taken into account. + /// to be true or false at the specified instruction. + /// \p Pred is a CmpInst predicate. If \p UseBlockValue is true, the block + /// value is also taken into account. Tristate getPredicateAt(unsigned Pred, Value *V, Constant *C, - Instruction *CxtI, bool UseBlockValue = false); + Instruction *CxtI, bool UseBlockValue = false); - /// Determine whether the specified value is known to be a constant at the - /// specified instruction. Return null if not. - Constant *getConstant(Value *V, Instruction *CxtI); + /// Determine whether the specified value is known to be a constant at the + /// specified instruction. Return null if not. + Constant *getConstant(Value *V, Instruction *CxtI); /// Return the ConstantRange constraint that is known to hold for the - /// specified value at the specified instruction. This may only be called + /// specified value at the specified instruction. This may only be called /// on integer-typed Values. - ConstantRange getConstantRange(Value *V, Instruction *CxtI, + ConstantRange getConstantRange(Value *V, Instruction *CxtI, bool UndefAllowed = true); /// Determine whether the specified value is known to be a |