brintos

brintos / llvm-project-archived public Read only

0
0
Text · 586 B · c7e4174 Raw
25 lines · plain
1// RUN: %clang %cflags -o %t %s2// RUN: llvm-bolt --print-cfg --print-only=_start -o %t.null %t \3// RUN:    | FileCheck %s4 5  .data6  .globl d7  .p2align 38d:9  .dword 010 11  .text12  .globl _start13  .p2align 114// CHECK: Binary Function "_start" after building cfg {15_start:16  nop // Here to not make the _start and .Ltmp0 symbols coincide17// CHECK: auipc t0, %pcrel_hi(d) # Label: .Ltmp018// CHECK-NEXT: ld t0, %pcrel_lo(.Ltmp0)(t0)19  ld t0, d20// CHECK-NEXT: auipc t1, %pcrel_hi(d) # Label: .Ltmp121// CHECK-NEXT: sd t0, %pcrel_lo(.Ltmp1)(t1)22  sd t0, d, t123  ret24  .size _start, .-_start25