projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Mass update to CodeGen tests to use CHECK-LABEL for labels corresponding to function...
[oota-llvm.git]
/
test
/
CodeGen
/
X86
/
stdcall-notailcall.ll
1
; RUN: llc -mtriple=i386-apple-darwin11 -O2 < %s | FileCheck %s
2
3
%struct.I = type { i32 (...)** }
4
define x86_stdcallcc void @bar(%struct.I* nocapture %this) ssp align 2 {
5
; CHECK-LABEL: bar:
6
; CHECK-NOT: jmp
7
; CHECK: ret $4
8
entry:
9
tail call void @foo()
10
ret void
11
}
12
13
declare void @foo()