Home | History | Annotate | Download | only in AsmParser

Lines Matching full:maxvalue

23 // Return true if Expr is in the range [MinValue, MaxValue].
24 static bool inRange(const MCExpr *Expr, int64_t MinValue, int64_t MaxValue) {
27 return Value >= MinValue && Value <= MaxValue;
217 bool isImm(int64_t MinValue, int64_t MaxValue) const {
218 return Kind == KindImm && inRange(Imm, MinValue, MaxValue);