Lines Matching refs:GCCVersion
1129 /// \brief Parse a GCCVersion object out of a string of text.
1131 /// This is the primary means of forming GCCVersion objects.
1133 Generic_GCC::GCCVersion Linux::GCCVersion::Parse(StringRef VersionText) {
1134 const GCCVersion BadVersion = { VersionText.str(), -1, -1, -1, "", "", "" };
1138 GCCVersion GoodVersion = { VersionText.str(), -1, -1, -1, "", "", "" };
1171 /// \brief Less-than for GCCVersion, implementing a Strict Weak Ordering.
1172 bool Generic_GCC::GCCVersion::isOlderThan(int RHSMajor, int RHSMinor,
1263 Version = GCCVersion::Parse("0.0.0");
2108 GCCVersion CandidateVersion = GCCVersion::Parse(VersionText);
2214 const Generic_GCC::GCCVersion &V = GCCInstallation.getVersion();
2315 GCCVersion MaxVersion= GCCVersion::Parse("0.0.0");
2318 GCCVersion cv = GCCVersion::Parse(llvm::sys::path::filename(di->path()));
3500 const GCCVersion &Version = GCCInstallation.getVersion();