From a0e980610136aba00482eaf49101610567b74451 Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Wed, 2 Mar 2016 21:11:36 +0000 Subject: [PATCH] Use ld.lld instead of "lld -flavor gnu". llvm-svn: 262518 --- lld/test/ELF/amdgpu-entry.s | 2 +- lld/test/ELF/amdgpu-kernels.s | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.7.4