forked from OSchip/llvm-project
47 lines
842 B
ArmAsm
47 lines
842 B
ArmAsm
# REQUIRES: x86
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t
|
|
|
|
# RUN: %lld -e A %t -o %t.out --icf=all
|
|
# RUN: llvm-nm --numeric-sort %t.out | FileCheck %s
|
|
# RUN: %lld -e A %t -o %t2.out
|
|
# RUN: llvm-nm --numeric-sort %t2.out | FileCheck %s --check-prefix=NOICF
|
|
|
|
.text
|
|
.globl D
|
|
D:
|
|
mov $60, %rax
|
|
retq
|
|
|
|
.globl C
|
|
C:
|
|
mov $60, %rax
|
|
retq
|
|
|
|
.globl B
|
|
B:
|
|
mov $2, %rax
|
|
retq
|
|
|
|
.globl A
|
|
A:
|
|
mov $42, %rax
|
|
retq
|
|
|
|
.cg_profile A, B, 100
|
|
.cg_profile A, C, 40
|
|
.cg_profile C, D, 61
|
|
|
|
.subsections_via_symbols
|
|
|
|
# CHECK: 0000000100000290 T A
|
|
# CHECK-NEXT: 0000000100000298 T C
|
|
# CHECK-NEXT: 0000000100000298 T D
|
|
# CHECK-NEXT: 00000001000002a0 T B
|
|
|
|
# NOICF: 0000000100000290 T A
|
|
# NOICF-NEXT: 0000000100000298 T B
|
|
# NOICF-NEXT: 00000001000002a0 T C
|
|
# NOICF-NEXT: 00000001000002a8 T D
|
|
|