From ea244fcb84c807a7d213754657e452d30acfcab8 Mon Sep 17 00:00:00 2001 From: Hal Finkel Date: Tue, 13 Oct 2015 19:16:56 +0000 Subject: [PATCH] [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 --- lld/test/elf2/ppc64-toc-restore.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/test/elf2/ppc64-toc-restore.s b/lld/test/elf2/ppc64-toc-restore.s index 907f3138730c..d141b37c4f2b 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