diff options
| author | Feng Zou <feng.zou@intel.com> | 2025-04-29 21:27:36 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-29 21:27:36 +0800 |
| commit | f02c93d707c0f36a696a5ec71131cba95a30c045 (patch) | |
| tree | 1a32b27947373924884ca6d2cf50397dcd8312dd | |
| parent | 4560ff8740c58745506c7797ec1076fd83dd7345 (diff) | |
| download | llvm-f02c93d707c0f36a696a5ec71131cba95a30c045.zip llvm-f02c93d707c0f36a696a5ec71131cba95a30c045.tar.gz llvm-f02c93d707c0f36a696a5ec71131cba95a30c045.tar.bz2 | |
[X86] Remove LLD command in LIT test (#137794)
The test introduced in #136660, may be failed as ld.lld command not
found.
| -rw-r--r-- | llvm/test/CodeGen/X86/apx/tls.ll | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/test/CodeGen/X86/apx/tls.ll b/llvm/test/CodeGen/X86/apx/tls.ll index 736e843..1149fe8 100644 --- a/llvm/test/CodeGen/X86/apx/tls.ll +++ b/llvm/test/CodeGen/X86/apx/tls.ll @@ -5,14 +5,10 @@ ; RUN: llc -mattr=+egpr %s -mtriple=x86_64 -filetype=obj -o %t.o -x86-enable-apx-for-relocation=true ; RUN: llvm-objdump --no-print-imm-hex -dr %t.o | FileCheck %s --check-prefix=GOTTPOFF_APXRELAX ; RUN: echo '.tbss; .globl b,c,d,e,f,g,h,i,j; b: .zero 4;c: .zero 4;d: .zero 4;e: .zero 4;f: .zero 4;g: .zero 4;h: .zero 4;i: .zero 4;j: .zero 4' | llvm-mc -filetype=obj -triple=x86_64 - -o %t1.o -; RUN: ld.lld %t.o %t1.o -o %t.so -; RUN: llvm-objdump --no-print-imm-hex -dr %t.so | FileCheck %s --check-prefix=GOTTPOFF_LD_APXRELAX ; RUN: llc -mattr=+egpr %s -mtriple=x86_64 -filetype=obj -o %t.o ; RUN: llvm-objdump --no-print-imm-hex -dr %t.o | FileCheck %s --check-prefix=GOTTPOFF_NOAPXRELAX ; RUN: echo '.tbss; .globl b,c,d,e,f,g,h,i,j; b: .zero 4;c: .zero 4;d: .zero 4;e: .zero 4;f: .zero 4;g: .zero 4;h: .zero 4;i: .zero 4;j: .zero 4' | llvm-mc -filetype=obj -triple=x86_64 - -o %t1.o -; RUN: ld.lld %t.o %t1.o -o %t.so -; RUN: llvm-objdump --no-print-imm-hex -dr %t.so | FileCheck %s --check-prefix=GOTTPOFF_LD_NOAPXRELAX ; TLSDESC: d5 18 89 c0 movq %rax, %r16 @@ -21,11 +17,9 @@ ; GOTTPOFF_APXRELAX: d5 48 8b 05 00 00 00 00 movq (%rip), %r16 ; GOTTPOFF_APXRELAX-NEXT: R_X86_64_CODE_4_GOTTPOFF j-0x4 -; GOTTPOFF_LD_APXRELAX: d5 18 c7 c0 fc ff ff ff movq $-4, %r16 ; GOTTPOFF_NOAPXRELAX: 48 8b 1d 00 00 00 00 movq (%rip), %rbx ; GOTTPOFF_NOAPXRELAX-NEXT: R_X86_64_GOTTPOFF j-0x4 -; GOTTPOFF_LD_NOAPXRELAX: 48 c7 c3 fc ff ff ff movq $-4, %rbx @a = thread_local global i32 0, align 4 @b = external thread_local global i32, align 4 |
