aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/X86/fast-isel-disable-tail-calls.ll
blob: c0aac5e1bd3161a21c7cedade0742be954906290 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llc -O0 -fast-isel -mtriple=x86_64-unknown-unknown < %s | FileCheck %s

; CHECK-NOT: retq
; CHECK: jmpq

define void @f(ptr %this) "disable-tail-calls"="true" {
  musttail call void %this(ptr %this)
  ret void
}