You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
21
external/llvm/test/CodeGen/X86/stdcall-notailcall.ll
vendored
Normal file
21
external/llvm/test/CodeGen/X86/stdcall-notailcall.ll
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
; 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: retl $4
|
||||
entry:
|
||||
tail call void @foo()
|
||||
ret void
|
||||
}
|
||||
|
||||
define x86_thiscallcc void @test2(%struct.I* %this, i32 %a) {
|
||||
; CHECK-LABEL: test2:
|
||||
; CHECK: calll _foo
|
||||
; CHECK: retl $4
|
||||
tail call void @foo()
|
||||
ret void
|
||||
}
|
||||
|
||||
declare void @foo()
|
Reference in New Issue
Block a user