diff options
Diffstat (limited to 'lld/test')
-rw-r--r-- | lld/test/ELF/gc-sections-print.s | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lld/test/ELF/gc-sections-print.s b/lld/test/ELF/gc-sections-print.s new file mode 100644 index 00000000000..59177a65367 --- /dev/null +++ b/lld/test/ELF/gc-sections-print.s @@ -0,0 +1,23 @@ +# REQUIRES: x86 +# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t +# RUN: ld.lld %t --gc-sections --print-gc-sections -o %t2 2>&1 | FileCheck -check-prefix=PRINT %s + +# PRINT: removing unused section from '.text.x' in file +# PRINT-NEXT: removing unused section from '.text.y' in file + +.globl _start +.protected a, x, y +_start: + call a + +.section .text.a,"ax",@progbits +a: + nop + +.section .text.x,"ax",@progbits +x: + nop + +.section .text.y,"ax",@progbits +y: + nop |