[LV] Add test showing debug output for loops with uncountable BTCs.
[llvm-project.git] / bolt / test / X86 / ctc-and-unreachable.test
blob55ba1fe316a91dd24d4261441d51a142df86f122
1 ## Check that we don't fail processing a function with conditional tail call and
2 ## a fall-through to a next function (result of builtin_unreachable()).
4 RUN: %clang %cflags %p/Inputs/ctc_and_unreachable.s -o %t.exe -Wl,-q
5 RUN: llvm-bolt %t.exe -o %t --print-after-lowering --print-only=foo 2>&1 | FileCheck %s
7 CHECK: Binary Function "foo"
8 CHECK:  cmpq $0x1, %rdi
9 CHECK:  je bar # TAILCALL
10 CHECK:  retq
11 CHECK:  cmpq    $0x1, %rdi
12 CHECK:  jmp     .Ltmp[[#]]
13 CHECK: End of Function "foo"