summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/stdcall-notailcall.ll
blob: 8f522cda284a518162ceb1d79b2fd5a31e523279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llc -mtriple=i386-apple-darwin11 -O2 < %s | FileCheck %s

%struct.I = type { i32 (...)** }
define x86_stdcallcc void @bar(%struct.I* nocapture %this) ssp align 2 {
; CHECK-LABEL: bar:
; CHECK-NOT: jmp
; CHECK: ret $4
entry:
  tail call void @foo()
  ret void
}

declare void @foo()