[PATCH] D62834: [WebAssembly] make wasm-ld --verbose show data section startVA and name
Thomas Lively via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 4 14:13:36 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL362548: [WebAssembly] make wasm-ld --verbose show data section startVA and name (authored by tlively, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D62834?vs=202829&id=203022#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D62834/new/
https://reviews.llvm.org/D62834
Files:
lld/trunk/wasm/OutputSections.cpp
Index: lld/trunk/wasm/OutputSections.cpp
===================================================================
--- lld/trunk/wasm/OutputSections.cpp
+++ lld/trunk/wasm/OutputSections.cpp
@@ -151,7 +151,8 @@
Segment->SectionOffset = BodySize;
BodySize += Segment->Header.size() + Segment->Size;
- log("Data segment: size=" + Twine(Segment->Size));
+ log("Data segment: size=" + Twine(Segment->Size) + ", startVA=" +
+ Twine::utohexstr(Segment->StartVA) + ", name=" + Segment->Name);
for (InputSegment *InputSeg : Segment->InputSegments)
InputSeg->OutputOffset = Segment->SectionOffset + Segment->Header.size() +
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D62834.203022.patch
Type: text/x-patch
Size: 648 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190604/42b1ea14/attachment.bin>
More information about the llvm-commits
mailing list