xref: /llvm-project/llvm/test/CodeGen/X86/fast-isel-disable-tail-calls.ll (revision d6cc7a5b462bb290d281c3429af9fa0bad283b3d)
1; RUN: llc -O0 -fast-isel -mtriple=x86_64-unknown-unknown < %s | FileCheck %s
2
3; CHECK-NOT: retq
4; CHECK: jmpq
5
6define void @f(ptr %this) "disable-tail-calls"="true" {
7  musttail call void %this(ptr %this)
8  ret void
9}
10