Home
last modified time | relevance | path

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

/external/clang/lib/Driver/
DToolChains.h48 struct GCCVersion { struct
61 static GCCVersion Parse(StringRef VersionText); argument
64 bool operator<(const GCCVersion &RHS) const {
67 bool operator>(const GCCVersion &RHS) const { return RHS < *this; }
68 bool operator<=(const GCCVersion &RHS) const { return !(*this > RHS); }
69 bool operator>=(const GCCVersion &RHS) const { return !(*this < RHS); }
92 GCCVersion Version;
129 const GCCVersion &getVersion() const { return Version; } in getVersion()
694 GCCVersion GCCLibAndIncVersion;
DToolChains.cpp1098 Generic_GCC::GCCVersion Linux::GCCVersion::Parse(StringRef VersionText) { in Parse()
1099 const GCCVersion BadVersion = { VersionText.str(), -1, -1, -1, "", "", "" }; in Parse()
1103 GCCVersion GoodVersion = { VersionText.str(), -1, -1, -1, "", "", "" }; in Parse()
1137 bool Generic_GCC::GCCVersion::isOlderThan(int RHSMajor, int RHSMinor, in isOlderThan()
1228 Version = GCCVersion::Parse("0.0.0"); in init()
1974 GCCVersion CandidateVersion = GCCVersion::Parse(VersionText); in ScanLibDirForGCCTriple()
2084 const Generic_GCC::GCCVersion &V = GCCInstallation.getVersion(); in addClangTargetOptions()
2187 GCCVersion MaxVersion= GCCVersion::Parse("0.0.0"); in Hexagon_TC()
2190 GCCVersion cv = GCCVersion::Parse(llvm::sys::path::filename(di->path())); in Hexagon_TC()
3552 const GCCVersion &Version = GCCInstallation.getVersion(); in AddClangCXXStdlibIncludeArgs()