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

Declarations

include/llvm/ADT/APInt.h
  261   int compareSigned(const APInt &RHS) const LLVM_READONLY;

References

include/llvm/ADT/APInt.h
 1207   bool slt(const APInt &RHS) const { return compareSigned(RHS) < 0; }
 1242   bool sle(const APInt &RHS) const { return compareSigned(RHS) <= 0; }
include/llvm/ADT/APSInt.h
  308       return I1.IsUnsigned ? I1.compare(I2) : I1.compareSigned(I2);