[PATCH] D64439: [lld][WebAssembly] Fix data section name in PIC mode
Phabricator via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 9 12:47:48 PDT 2019
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rL365547: [lld][WebAssembly] Fix name of data section in PIC mode (authored by sbc, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D64439?vs=208773&id=208784#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D64439/new/
https://reviews.llvm.org/D64439
Files:
lld/trunk/wasm/Writer.cpp
Index: lld/trunk/wasm/Writer.cpp
===================================================================
--- lld/trunk/wasm/Writer.cpp
+++ lld/trunk/wasm/Writer.cpp
@@ -304,9 +304,9 @@
// gold provide the feature, and used by many programs.
static void addStartStopSymbols(const OutputSegment *Seg) {
StringRef Name = Seg->Name;
- LLVM_DEBUG(dbgs() << "addStartStopSymbols: " << Name << "\n");
if (!isValidCIdentifier(Name))
return;
+ LLVM_DEBUG(dbgs() << "addStartStopSymbols: " << Name << "\n");
uint32_t Start = Seg->StartVA;
uint32_t Stop = Start + Seg->Size;
Symtab->addOptionalDataSymbol(Saver.save("__start_" + Name), Start);
@@ -601,7 +601,7 @@
// With PIC code we currently only support a single data segment since
// we only have a single __memory_base to use as our base address.
if (Config->Pic)
- return "data";
+ return ".data";
if (!Config->MergeDataSegments)
return Name;
if (Name.startswith(".text."))
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D64439.208784.patch
Type: text/x-patch
Size: 965 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190709/3d13f458/attachment.bin>
More information about the llvm-commits
mailing list