blob: 6a8b5a28e19d92059aecc9af95cca67797b2c18b [file] [log] [blame]
Job Noormanf8730292023-06-16 09:49:191// RUN: %clang %cflags -o %t %s
Amir Ayupovab14eb22023-11-27 18:53:182// RUN: llvm-bolt --print-cfg --print-only=_start -o %t.null %t \
Job Noormanf8730292023-06-16 09:49:193// RUN: | FileCheck %s
4
5 .text
6 .globl _start
7 .p2align 1
8// CHECK: Binary Function "_start" after building cfg {
9_start:
10// CHECK: beq zero, zero, .Ltmp0
11 beq zero, zero, 1f
12 nop
13// CHECK: .Ltmp0
141:
15 ret
16 .size _start, .-_start