From: Rui Ueyama Date: Wed, 2 Mar 2016 21:11:36 +0000 (+0000) Subject: Use ld.lld instead of "lld -flavor gnu". X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a0e980610136aba00482eaf49101610567b74451;p=platform%2Fupstream%2Fllvm.git Use ld.lld instead of "lld -flavor gnu". llvm-svn: 262518 --- diff --git a/lld/test/ELF/amdgpu-entry.s b/lld/test/ELF/amdgpu-entry.s index a17d243..2a47b17 100644 --- a/lld/test/ELF/amdgpu-entry.s +++ b/lld/test/ELF/amdgpu-entry.s @@ -1,5 +1,5 @@ # RUN: llvm-mc -filetype=obj -triple amdgcn--amdhsa -mcpu=kaveri %s -o %t.o -# RUN: not lld -e kernel0 -flavor gnu %t.o -o %t +# RUN: not ld.lld -e kernel0 %t.o -o %t # REQUIRES: amdgpu diff --git a/lld/test/ELF/amdgpu-kernels.s b/lld/test/ELF/amdgpu-kernels.s index 3f43c71..208ede1 100644 --- a/lld/test/ELF/amdgpu-kernels.s +++ b/lld/test/ELF/amdgpu-kernels.s @@ -1,5 +1,5 @@ # RUN: llvm-mc -filetype=obj -triple amdgcn--amdhsa -mcpu=kaveri %s -o %t.o -# RUN: lld -flavor gnu %t.o -o %t +# RUN: ld.lld %t.o -o %t # RUN: llvm-readobj -sections -symbols -program-headers %t | FileCheck %s # REQUIRES: amdgpu