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

References

lib/Support/APFloat.cpp
 4036   if (RHS.getCategory() == fcNaN) {
 4037     Out = RHS;
 4041     Out = RHS;
 4044   if (RHS.getCategory() == fcZero) {
 4048   if (LHS.getCategory() == fcInfinity && RHS.getCategory() == fcInfinity &&
 4049       LHS.isNegative() != RHS.isNegative()) {
 4057   if (RHS.getCategory() == fcInfinity) {
 4058     Out = RHS;
 4061   assert(LHS.getCategory() == fcNormal && RHS.getCategory() == fcNormal);
 4063   APFloat A(LHS.Floats[0]), AA(LHS.Floats[1]), C(RHS.Floats[0]),
 4064       CC(RHS.Floats[1]);