Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / ELF / linkerscript / empty-section-size.test
blob632b85db7a7c951ba3b1e90c26d10c79ef0723c7
1 # REQUIRES: x86
2 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux /dev/null -o %t.o
3 # RUN: ld.lld %t.o --script %s -o %t1
4 # RUN: llvm-readobj --symbols %t1 | FileCheck %s
6 ## We had a bug when LLD increased the size of the output section even
7 ## if it was empty. That happened because of empty synthetic sections included.
8 ## Here we check that size of empty output section is zero.
10 # CHECK:       Name: foo
11 # CHECK-NEXT:  Value: 0x0
13 SECTIONS {
14   . = 0x1000;
15   .bss : { *(.bss*) *(COMMON) }
16   foo = SIZEOF(.bss);