Added a line to thread trace dump info results which shows total number of instructions executed until now.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
just some minor details and good to go
lldb/source/Plugins/Trace/intel-pt/TraceIntelPT.cpp | ||
---|---|---|
108 | use -> instead of dereferencing. It's less characters and more readable | |
115 | no need to create a new variable. You can just inline everything here. It's not complex | |
lldb/test/API/commands/trace/TestTraceDumpInfo.py | ||
38–42 | thanks for putting the entire output here |
Comment Actions
Using arrow op and made it inline. I think creating a variable looks a bit better but this is fine too.
use -> instead of dereferencing. It's less characters and more readable