blob: a275c8b7a5560ff3fb1a76a1bb1b0297dca8bd65 [file] [log] [blame]
Akira Hatanaka9029cf22011-08-11 22:42:31 +00001; RUN: llc -march=mipsel < %s | FileCheck %s
2
3; CHECK: .set macro
4; CHECK-NEXT: .cprestore
5; CHECK-NEXT: .set nomacro
6
7%struct.S = type { [16384 x i32] }
8
9define void @foo2() nounwind {
10entry:
11 %s = alloca %struct.S, align 4
12 call void @foo1(%struct.S* byval %s)
13 ret void
14}
15
16declare void @foo1(%struct.S* byval)