aboutsummaryrefslogblamecommitdiff
path: root/test/ELF/icf4.s
blob: 08830c8e503c8b2aef9fef10b10e51c77878ccc4 (plain) (tree)
1
2
3
4


                                                                  
                                                          














                              
# REQUIRES: x86

# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
# RUN: ld.lld %t -o %t2 --icf=all --verbose | FileCheck %s

# CHECK-NOT: Selected .text.f1
# CHECK-NOT: Selected .text.f2

.globl _start, f1, f2
_start:
  ret

.section .text.f1, "ax"
f1:
  mov $1, %rax

.section .text.f2, "ax"
f2:
  mov $0, %rax