Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / bolt / test / X86 / ctc-and-unreachable.test
blob0a0b7fcff4ce9be5e11e725b8f5892436d411281
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"