| ## Tests the optimization of functions that just do a tail call in the beginning. | |
| RUN: %clangxx %cxxflags -O2 %S/Inputs/jmp_opt.cpp %S/Inputs/jmp_opt2.cpp \ | |
| RUN: %S/Inputs/jmp_opt3.cpp -o %t | |
| RUN: llvm-bolt -inline-small-functions %t -o %t.bolt | |
| RUN: llvm-objdump -d %t.bolt --print-imm-hex | FileCheck %s | |
| CHECK: <main>: | |
| CHECK-NOT: call | |
| CHECK: xorl %eax, %eax | |
| CHECK: retq |