Searched refs:GoodVersion (Results 1 – 1 of 1) sorted by relevance
/external/clang/lib/Driver/ |
D | ToolChains.cpp | 1138 GCCVersion GoodVersion = { VersionText.str(), -1, -1, -1, "", "", "" }; in Parse() local 1139 if (First.first.getAsInteger(10, GoodVersion.Major) || in Parse() 1140 GoodVersion.Major < 0) in Parse() 1142 GoodVersion.MajorStr = First.first.str(); in Parse() 1143 if (Second.first.getAsInteger(10, GoodVersion.Minor) || in Parse() 1144 GoodVersion.Minor < 0) in Parse() 1146 GoodVersion.MinorStr = Second.first.str(); in Parse() 1157 StringRef PatchText = GoodVersion.PatchSuffix = Second.second.str(); in Parse() 1161 if (PatchText.slice(0, EndNumber).getAsInteger(10, GoodVersion.Patch) || in Parse() 1162 GoodVersion.Patch < 0) in Parse() [all …]
|