mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
2566d39d07
cannot use tailcall. PR 8461. llvm-svn: 117322
14 lines
283 B
LLVM
14 lines
283 B
LLVM
; 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: bar:
|
|
; CHECK-NOT: jmp
|
|
; CHECK: ret $4
|
|
entry:
|
|
tail call void @foo()
|
|
ret void
|
|
}
|
|
|
|
declare void @foo()
|