blob: 780d978f36f44720c8b678feae6e612464ac0ccb [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:
Kristof Beyls41118412024-12-20 08:54:0710// CHECK: beqz zero, .Ltmp0
Job Noormanf8730292023-06-16 09:49:1911 beq zero, zero, 1f
12 nop
13// CHECK: .Ltmp0
141:
15 ret
16 .size _start, .-_start