Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
| tools/llvm-exegesis/llvm-exegesis.cpp | ||
|---|---|---|
| 178 ↗ | (On Diff #147300) | Since there's no performance issue here, I'd rather separate the report generation from saving it: std::string ClusterReport;
if (auto Err = Analyzer.printClusters(llvm::raw_string_ostream(ClusterReport))) {
  PrintAnalysis("analysis clusters", AnalysisClustersFile, ClusterReport );
}
std::string InconsistenciesReport;
if (auto Err = Analyzer.printClusters(llvm::raw_string_ostream(InconsistenciesReport))) {
  PrintAnalysis("sched class consistency analysis", AnalysisInconsistenciesFile, InconsistenciesReport );
} |