diff options
author | Hal Finkel <hfinkel@anl.gov> | 2015-10-13 19:16:56 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2015-10-13 19:16:56 +0000 |
commit | ea244fcb84c807a7d213754657e452d30acfcab8 (patch) | |
tree | e0362cbd5911f5348d222cc9c9854e145063f497 | |
parent | 9abc2a50b351acabfba3b0737f0f3d45a1f2053a (diff) | |
download | bcm5719-llvm-ea244fcb84c807a7d213754657e452d30acfcab8.tar.gz bcm5719-llvm-ea244fcb84c807a7d213754657e452d30acfcab8.zip |
[ELF2] Drop unnecessary lld flags from test/elf2/ppc64-toc-restore.s
As Rafael pointed out in his review of r250110, -dynamic-linker, -rpath and
--export-dynamic are unnecessary.
llvm-svn: 250210
-rw-r--r-- | lld/test/elf2/ppc64-toc-restore.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/test/elf2/ppc64-toc-restore.s b/lld/test/elf2/ppc64-toc-restore.s index 907f3138730..d141b37c4f2 100644 --- a/lld/test/elf2/ppc64-toc-restore.s +++ b/lld/test/elf2/ppc64-toc-restore.s @@ -1,7 +1,7 @@ // RUN: llvm-mc -filetype=obj -triple=powerpc64-unknown-linux %s -o %t.o // RUN: llvm-mc -filetype=obj -triple=powerpc64-unknown-linux %p/Inputs/shared-ppc64.s -o %t2.o // RUN: ld.lld2 -shared %t2.o -o %t2.so -// RUN: ld.lld2 -dynamic-linker /lib64/ld64.so.1 -rpath foo -rpath bar --export-dynamic %t.o %t2.so -o %t +// RUN: ld.lld2 %t.o %t2.so -o %t // RUN: llvm-objdump -d %t | FileCheck %s // REQUIRES: ppc |