Index: llvm/trunk/tools/llvm-exegesis/lib/Analysis.cpp =================================================================== --- llvm/trunk/tools/llvm-exegesis/lib/Analysis.cpp +++ llvm/trunk/tools/llvm-exegesis/lib/Analysis.cpp @@ -182,7 +182,10 @@ OS << "ClusterIdOpcode/Config"; for (const auto &Measurement : Points[PointIds[0]].Measurements) { OS << ""; - writeEscaped(OS, Measurement.Key); + if (Measurement.DebugString.empty()) + writeEscaped(OS, Measurement.Key); + else + writeEscaped(OS, Measurement.DebugString); OS << ""; } OS << "";