[llvm-branch-commits] [clang] [llvm] clang: Store Triple in multiset (PR #189264)
Matt Arsenault via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Sun Mar 29 09:59:02 PDT 2026
================
@@ -387,6 +387,13 @@ class Triple {
return !(*this == Other);
}
+ bool operator<(const Triple &Other) const {
+ return std::tie(Arch, SubArch, Vendor, OS, Environment, ObjectFormat,
----------------
arsenm wrote:
The string is still there as a fallback if one of the entries doesn't parse as known
https://github.com/llvm/llvm-project/pull/189264
More information about the llvm-branch-commits
mailing list