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

References

lib/Support/APFloat.cpp
 4485   if (&getSemantics() == &ToSemantics) {
 4490       usesLayout<IEEEFloat>(ToSemantics))
 4491     return U.IEEE.convert(ToSemantics, RM, losesInfo);
 4493       usesLayout<DoubleAPFloat>(ToSemantics)) {
 4494     assert(&ToSemantics == &semPPCDoubleDouble);
 4496     *this = APFloat(ToSemantics, U.IEEE.bitcastToAPInt());
 4500       usesLayout<IEEEFloat>(ToSemantics)) {
 4501     auto Ret = getIEEE().convert(ToSemantics, RM, losesInfo);
 4502     *this = APFloat(std::move(getIEEE()), ToSemantics);