[Lldb-commits] [PATCH] D125047: [trace][intelpt] Support system-wide tracing [6] - Break IntelPTCollector into smaller files and minor refactor

Jakob Johnson via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed May 11 05:26:37 PDT 2022


jj10306 accepted this revision.
jj10306 added inline comments.
This revision is now accepted and ready to land.


================
Comment at: lldb/source/Utility/TraceGDBRemotePackets.cpp:136
                             {"tid", packet.tid},
-                            {"size", packet.size}});
+                            {"size", static_cast<int64_t>(packet.size)}});
 }
----------------
why is this needed now? I thought that unsigned ints were now supported by the json lib. 
is this temporary because of the bug you address in D125322?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D125047/new/

https://reviews.llvm.org/D125047



More information about the lldb-commits mailing list