diff options
Diffstat (limited to 'include/llvm/Support/ConstantRange.h')
| -rw-r--r-- | include/llvm/Support/ConstantRange.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Support/ConstantRange.h b/include/llvm/Support/ConstantRange.h index d767bd3..c3a6dd0 100644 --- a/include/llvm/Support/ConstantRange.h +++ b/include/llvm/Support/ConstantRange.h @@ -232,6 +232,9 @@ public: /// from a logical right shift of a value in this range by the Amount value. ConstantRange lshr(const ConstantRange &Amount) const; + /// inverse - Return a new range that is the logical not of the current set. + ConstantRange inverse() const; + /// print - Print out the bounds to a stream... /// void print(raw_ostream &OS) const; |
