mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-16 11:05:54 +00:00
d155d7e428
cannot use tailcall. PR 8461. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117322 91177308-0d34-0410-b5e6-96231b3b80d8
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()
|