Searched refs:GoodVersion (Results 1 – 1 of 1) sorted by relevance
| /llvm-project-15.0.7/clang/lib/Driver/ToolChains/ |
| H A D | Gnu.cpp | 1915 GCCVersion GoodVersion = {VersionText.str(), -1, -1, -1, "", "", ""}; in Parse() local 1916 if (First.first.getAsInteger(10, GoodVersion.Major) || GoodVersion.Major < 0) in Parse() 1918 GoodVersion.MajorStr = First.first.str(); in Parse() 1920 return GoodVersion; in Parse() 1924 GoodVersion.PatchSuffix = std::string(MinorStr.substr(EndNumber)); in Parse() 1928 if (MinorStr.getAsInteger(10, GoodVersion.Minor) || GoodVersion.Minor < 0) in Parse() 1930 GoodVersion.MinorStr = MinorStr.str(); in Parse() 1947 if (PatchText.slice(0, EndNumber).getAsInteger(10, GoodVersion.Patch) || in Parse() 1948 GoodVersion.Patch < 0) in Parse() 1950 GoodVersion.PatchSuffix = std::string(PatchText.substr(EndNumber)); in Parse() [all …]
|