This makes the report much more readable.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
- Build Status
Buildable 18449 Build 18449: arc lint + arc unit
Event Timeline
Comment Actions
It might be worth splitting this file if it becomes too big.
tools/llvm-exegesis/lib/Clustering.cpp | ||
---|---|---|
172 ↗ | (On Diff #147972) | Can we try to leverage std::tie here? const bool IsValid = isValid(); const bool OtherIsValid = Other.isValid(); return std::tie(IsValid, Id) < std::tie(OtherIsValid, Other.Id); |
Comment Actions
I think 300 lines is still OK :D
tools/llvm-exegesis/lib/Clustering.cpp | ||
---|---|---|
172 ↗ | (On Diff #147972) | I've made the ordering simpler. |
This should take StringRef, not std::string