[Lldb-commits] [PATCH] D121226: [lldb] Removed scoped timer from ReadMemoryFromFileCache
Dave Lee via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 11 12:46:57 PST 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG94bda3aaa121: [lldb] Removed scoped timer from ReadMemoryFromFileCache (authored by kastiglione).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D121226/new/
https://reviews.llvm.org/D121226
Files:
lldb/source/Target/Target.cpp
Index: lldb/source/Target/Target.cpp
===================================================================
--- lldb/source/Target/Target.cpp
+++ lldb/source/Target/Target.cpp
@@ -1684,7 +1684,6 @@
size_t Target::ReadMemoryFromFileCache(const Address &addr, void *dst,
size_t dst_len, Status &error) {
- LLDB_SCOPED_TIMER();
SectionSP section_sp(addr.GetSection());
if (section_sp) {
// If the contents of this section are encrypted, the on-disk file is
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D121226.414732.patch
Type: text/x-patch
Size: 506 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220311/84c48d0c/attachment.bin>
More information about the lldb-commits
mailing list