reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/ADT/APInt.h
  257   int compare(const APInt &RHS) const LLVM_READONLY;

References

include/llvm/ADT/APInt.h
 1188   bool ult(const APInt &RHS) const { return compare(RHS) < 0; }
 1226   bool ule(const APInt &RHS) const { return compare(RHS) <= 0; }
include/llvm/ADT/APSInt.h
  308       return I1.IsUnsigned ? I1.compare(I2) : I1.compareSigned(I2);
  328     return I1.compare(I2);