diff options
-rw-r--r-- | lld/test/ELF/amdgpu-entry.s | 2 | ||||
-rw-r--r-- | 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 a17d243214b..2a47b1778de 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 3f43c71f65d..208ede18406 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 |