Lines Matching refs:GCCVersion
48 struct GCCVersion {
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;