Home | History | Annotate | Download | only in IR

Lines Matching defs:StrVal

819         SmallString<128> StrVal;
820 raw_svector_ostream(StrVal) << Val;
826 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
827 ((StrVal[0] == '-' || StrVal[0] == '+') &&
828 (StrVal[1] >= '0' && StrVal[1] <= '9'))) {
830 if (APFloat(APFloat::IEEEdouble, StrVal).convertToDouble() == Val) {
831 Out << StrVal.str();