pranavk created this revision.
Herald added a project: All.
pranavk requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.

This reverts commit be7d7ca1101840fc8e19e0e48f9dc395da569d23 
<https://reviews.llvm.org/rGbe7d7ca1101840fc8e19e0e48f9dc395da569d23>.

This commit was made to fix be7d7ca1101840fc8e19e0e48f9dc395da569d23 
<https://reviews.llvm.org/rGbe7d7ca1101840fc8e19e0e48f9dc395da569d23>
which got reverted in 620b3d9ba3343d7bc5bab2340174a20952fcd00f 
<https://reviews.llvm.org/rG620b3d9ba3343d7bc5bab2340174a20952fcd00f>. We need
to revert this commit as well because types in log statements are 32 bit again.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D143955

Files:
  lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp


Index: lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
===================================================================
--- lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
+++ lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
@@ -76,8 +76,8 @@
   for (size_t i = 0; i < num_entries; ++i) {
     const RangeToDIE::Entry *entry = m_aranges.GetEntryAtIndex(i);
     if (entry)
-      LLDB_LOGF(log, "0x%8.8" PRIx64 ": [0x%" PRIx64 " - 0x%" PRIx64 ")",
-                entry->data, entry->GetRangeBase(), entry->GetRangeEnd());
+      LLDB_LOGF(log, "0x%8.8x: [0x%" PRIx64 " - 0x%" PRIx64 ")", entry->data,
+                entry->GetRangeBase(), entry->GetRangeEnd());
   }
 }
 


Index: lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
===================================================================
--- lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
+++ lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
@@ -76,8 +76,8 @@
   for (size_t i = 0; i < num_entries; ++i) {
     const RangeToDIE::Entry *entry = m_aranges.GetEntryAtIndex(i);
     if (entry)
-      LLDB_LOGF(log, "0x%8.8" PRIx64 ": [0x%" PRIx64 " - 0x%" PRIx64 ")",
-                entry->data, entry->GetRangeBase(), entry->GetRangeEnd());
+      LLDB_LOGF(log, "0x%8.8x: [0x%" PRIx64 " - 0x%" PRIx64 ")", entry->data,
+                entry->GetRangeBase(), entry->GetRangeEnd());
   }
 }
 
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
  • [Lldb-commits] [PATCH]... Pranav Kant via Phabricator via lldb-commits

Reply via email to