Rewrite some of the test/CodeGen/X86 tests to use FileCheck instead of grep
[oota-llvm.git] / test / CodeGen / X86 / fastcc-sret.ll
1 ; RUN: llc < %s -march=x86 -tailcallopt=false | FileCheck %s
2 ; CHECK: ret{{[^4]*$}}
3
4         %struct.foo = type { [4 x i32] }
5
6 define fastcc void @bar(%struct.foo* noalias sret %agg.result) nounwind  {
7 entry:
8         %tmp1 = getelementptr %struct.foo* %agg.result, i32 0, i32 0
9         %tmp3 = getelementptr [4 x i32]* %tmp1, i32 0, i32 0
10         store i32 1, i32* %tmp3, align 8
11         ret void
12 }
13
14 @dst = external global i32
15
16 define void @foo() nounwind {
17         %memtmp = alloca %struct.foo, align 4
18         call fastcc void @bar( %struct.foo* sret %memtmp ) nounwind
19         %tmp4 = getelementptr %struct.foo* %memtmp, i32 0, i32 0
20         %tmp5 = getelementptr [4 x i32]* %tmp4, i32 0, i32 0
21         %tmp6 = load i32* %tmp5
22         store i32 %tmp6, i32* @dst
23         ret void
24 }