Home
last modified time | relevance | path

Searched refs:GoodVersion (Results 1 – 1 of 1) sorted by relevance

/external/clang/lib/Driver/
DToolChains.cpp1103 GCCVersion GoodVersion = { VersionText.str(), -1, -1, -1, "", "", "" }; in Parse() local
1104 if (First.first.getAsInteger(10, GoodVersion.Major) || in Parse()
1105 GoodVersion.Major < 0) in Parse()
1107 GoodVersion.MajorStr = First.first.str(); in Parse()
1108 if (Second.first.getAsInteger(10, GoodVersion.Minor) || in Parse()
1109 GoodVersion.Minor < 0) in Parse()
1111 GoodVersion.MinorStr = Second.first.str(); in Parse()
1122 StringRef PatchText = GoodVersion.PatchSuffix = Second.second.str(); in Parse()
1126 if (PatchText.slice(0, EndNumber).getAsInteger(10, GoodVersion.Patch) || in Parse()
1127 GoodVersion.Patch < 0) in Parse()
[all …]