[Lldb-commits] [lldb] [LLDB][Telemetry]Define TargetInfo for collecting data about a target (PR #127834)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Mar 18 10:20:34 PDT 2025


================
@@ -146,6 +155,59 @@ struct DebuggerInfo : public LLDBBaseTelemetryInfo {
   void serialize(llvm::telemetry::Serializer &serializer) const override;
 };
 
+struct ExecModuleInfo : public LLDBBaseTelemetryInfo {
+  lldb::ModuleSP exec_mod;
----------------
JDevlieghere wrote:

Let's drop the `exec_` prefix as this is relatively obvious from the class it belongs to and we don't consistently prefix all the members. 
```suggestion
  lldb::ModuleSP exec_mod;
```

https://github.com/llvm/llvm-project/pull/127834


More information about the lldb-commits mailing list