43 lines · plain
1# REQUIRES: x862 3# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t.o4# RUN: %lld -lSystem -e A -o %t.out %t.o5# RUN: llvm-nm --numeric-sort %t.out | FileCheck %s6# RUN: %lld --no-call-graph-profile-sort -lSystem -e A -o %t.out %t.o7# RUN: llvm-nm --numeric-sort %t.out | FileCheck %s --check-prefix=NO-CG8 9.text10 11D:12 retq13.globl C14C:15 retq16.globl B17B:18 retq19.globl A20A:21Aa:22 retq23.subsections_via_symbols24 25 26 27 .cg_profile A, B, 1028 .cg_profile A, B, 1029 .cg_profile Aa, B, 8030 .cg_profile A, C, 4031 .cg_profile B, C, 3032 .cg_profile C, D, 9033 34# CHECK: 00000001000002c8 T A35# CHECK: 00000001000002c9 T B36# CHECK: 00000001000002ca T C37# CHECK: 00000001000002cb t D38 39# NO-CG: 00000001000002c8 t D40# NO-CG: 00000001000002c9 T C41# NO-CG: 00000001000002ca T B42# NO-CG: 00000001000002cb T A43