mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-18 16:07:09 +00:00

If a function has no CFI program attached to it, do not print redundant empty CFI state for every basic block.
25 lines
900 B
Plaintext
25 lines
900 B
Plaintext
## Check that fallthrough blocks are handled properly and Offset annotation is
|
|
## set for conditional tail calls.
|
|
|
|
RUN: %clang %cflags %S/Inputs/sctc_bug4.s -o %t
|
|
RUN: llvm-bolt %t -o %t.null --enable-bat \
|
|
RUN: -funcs=test_func -print-sctc -sequential-disassembly 2>&1 | FileCheck %s
|
|
|
|
CHECK: .Ltmp2 (3 instructions, align : 1)
|
|
CHECK-NEXT: Input offset: 0x24
|
|
CHECK-NEXT: Predecessors: .LFT1
|
|
CHECK-NEXT: 00000024: cmpq $0x20, %rsi
|
|
CHECK-NEXT: 00000028: ja dummy # TAILCALL # Offset: 53 # CTCTakenCount: 0
|
|
CHECK-NEXT: 0000002a: jmp .Ltmp4
|
|
CHECK-NEXT: Successors: .Ltmp4
|
|
|
|
CHECK: .Ltmp1 (2 instructions, align : 1)
|
|
CHECK-NEXT: Input offset: 0x2c
|
|
CHECK-NEXT: Predecessors: .LFT0
|
|
CHECK-NEXT: 0000002c: xorq %r11, %rax
|
|
CHECK-NEXT: 0000002f: retq
|
|
|
|
CHECK: .Ltmp4 (4 instructions, align : 1)
|
|
CHECK-NEXT: Input offset: 0x3a
|
|
CHECK-NEXT: Predecessors: .Ltmp2
|