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

Declarations

include/llvm/ADT/APInt.h
 1101   APInt sdiv_ov(const APInt &RHS, bool &Overflow) const;

References

lib/Analysis/ConstantFolding.cpp
  951         APInt NewIdx = Offset.sdiv_ov(ElemSize, Overflow);
tools/clang/lib/CodeGen/CGExprScalar.cpp
   79       Result = LHSAP.sdiv_ov(RHSAP, Overflow);
tools/clang/lib/Lex/PPExpressions.cpp
  669           Res = llvm::APSInt(LHS.Val.sdiv_ov(RHS.Val, Overflow), false);