xref: /llvm-project/lld/test/ELF/linkerscript/input-sec-dup.s (revision f0374e7db2dd6effa9d38894522e7fcc6ebe53ac)
1# REQUIRES: x86
2# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
3
4# RUN: echo "SECTIONS {.foo : { *(.foo) *(.foo) } }" > %t.script
5# RUN: ld.lld -o %t1 --script %t.script %t
6# RUN: llvm-objdump --section-headers %t1 | FileCheck %s
7# CHECK:      Sections:
8# CHECK-NEXT: Idx Name          Size
9# CHECK-NEXT:   0               00000000
10# CHECK-NEXT:   1 .foo          00000004
11# CHECK-NEXT:   2 .text         00000001
12
13.global _start
14_start:
15 nop
16
17.section .foo,"a"
18 .long 0
19