[PATCH] D58540: [LLD][ELF][ARM] Accept and ignore -p and -no-pipeline-knowledge
Peter Smith via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 25 02:48:22 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL354769: [ELF][ARM] Accept and ignore -p and -no-pipleline-knowledge (authored by psmith, committed by ).
Herald added a project: LLVM.
Changed prior to commit:
https://reviews.llvm.org/D58540?vs=187911&id=188114#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58540/new/
https://reviews.llvm.org/D58540
Files:
lld/trunk/ELF/Options.td
lld/trunk/test/ELF/silent-ignore.test
Index: lld/trunk/ELF/Options.td
===================================================================
--- lld/trunk/ELF/Options.td
+++ lld/trunk/ELF/Options.td
@@ -504,7 +504,9 @@
def: F<"no-ctors-in-init-array">;
def: F<"no-keep-memory">;
def: F<"no-mmap-output-file">;
+def: F<"no-pipeline-knowledge">;
def: F<"no-warn-mismatch">;
+def: Flag<["-"], "p">;
def: Separate<["--", "-"], "rpath-link">;
def: J<"rpath-link=">;
def: F<"sort-common">;
Index: lld/trunk/test/ELF/silent-ignore.test
===================================================================
--- lld/trunk/test/ELF/silent-ignore.test
+++ lld/trunk/test/ELF/silent-ignore.test
@@ -6,8 +6,10 @@
RUN: -no-copy-dt-needed-entries \
RUN: -no-ctors-in-init-array \
RUN: -no-keep-memory \
+RUN: -no-pipeline-knowledge \
RUN: -no-warn-common \
RUN: -no-warn-mismatch \
+RUN: -p \
RUN: -sort-common \
RUN: -stats \
RUN: -warn-execstack \
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D58540.188114.patch
Type: text/x-patch
Size: 927 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190225/4c970e55/attachment.bin>
More information about the llvm-commits
mailing list