[PATCH] D129363: [lld-macho] Fix compact unwind output for 32 bit builds

David Spickett via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 11 01:21:11 PDT 2022


This revision was automatically updated to reflect the committed changes.
Closed by commit rG79942d32a631: [lld-macho] Fix compact unwind output for 32 bit builds (authored by DavidSpickett).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D129363

Files:
  lld/MachO/UnwindInfoSection.cpp


Index: lld/MachO/UnwindInfoSection.cpp
===================================================================
--- lld/MachO/UnwindInfoSection.cpp
+++ lld/MachO/UnwindInfoSection.cpp
@@ -506,7 +506,7 @@
     secondLevelPages.emplace_back();
     SecondLevelPage &page = secondLevelPages.back();
     page.entryIndex = i;
-    uintptr_t functionAddressMax =
+    uint64_t functionAddressMax =
         cuEntries[idx].functionAddress + COMPRESSED_ENTRY_FUNC_OFFSET_MASK;
     size_t n = commonEncodings.size();
     size_t wordsRemaining =


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D129363.443576.patch
Type: text/x-patch
Size: 534 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220711/14ae5740/attachment.bin>


More information about the llvm-commits mailing list