Searched defs:GCCVersion (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/Driver/
H A DToolChains.h48 struct GCCVersion { struct in class:clang::driver::toolchains::Generic_GCC
61 static GCCVersion Parse(StringRef VersionText);
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); }
93 GCCVersion Version;
130 const GCCVersion &getVersion() const { return Version; }
862 GCCVersion GCCLibAndIncVersion;

Completed in 202 milliseconds