Home | History | Annotate | Download | only in IR

Lines Matching defs:StrVal

793         SmallString<128> StrVal;
794 raw_svector_ostream(StrVal) << Val;
800 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
801 ((StrVal[0] == '-' || StrVal[0] == '+') &&
802 (StrVal[1] >= '0' && StrVal[1] <= '9'))) {
804 if (APFloat(APFloat::IEEEdouble, StrVal).convertToDouble() == Val) {
805 Out << StrVal.str();