Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / sibcall-byval.ll
blob12dbac1389a0e8de0e3072db7e403738900c4d48
1 ; RUN: llc < %s -mtriple=i386-apple-darwin9   | FileCheck %s -check-prefix=32
2 ; RUN: llc < %s -mtriple=x86_64-apple-darwin | FileCheck %s -check-prefix=64
4 %struct.p = type { i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 }
6 define i32 @f(ptr byval(%struct.p) align 4 %q) nounwind ssp {
7 entry:
8 ; 32: _f:
9 ; 32: jmp _g
11 ; 64: _f:
12 ; 64: jmp _g
13   %call = tail call i32 @g(ptr byval(%struct.p) align 4 %q) nounwind
14   ret i32 %call
17 declare i32 @g(ptr byval(%struct.p) align 4)
19 define i32 @h(ptr byval(%struct.p) align 4 %q, i32 %r) nounwind ssp {
20 entry:
21 ; 32: _h:
22 ; 32: jmp _i
24 ; 64: _h:
25 ; 64: jmp _i
27   %call = tail call i32 @i(ptr byval(%struct.p) align 4 %q, i32 %r) nounwind
28   ret i32 %call
31 declare i32 @i(ptr byval(%struct.p) align 4, i32)