blob: 579a319d5f7a0843cfd69e286dbd914a0e6a709b [file] [log] [blame]
Dan Gohman6f3ddef2011-10-29 00:41:52 +00001; DISABLED: llc -march=mipsel -mcpu=4ke < %s | FileCheck %s
2; RUN: false
3
4; byval is currently unsupported.
5; XFAIL: *
Dan Gohman6b13cd42011-09-01 23:07:08 +00006
Akira Hatanaka9ad65ae2011-05-24 21:28:18 +00007%struct.S1 = type { [65536 x i8] }
8
9@s1 = external global %struct.S1
10
11define void @f() nounwind {
12entry:
13; CHECK: lui $at, 65534
14; CHECK: addu $at, $sp, $at
Akira Hatanaka25eba392011-06-24 19:01:25 +000015; CHECK: addiu $sp, $at, -24
Akira Hatanaka9ad65ae2011-05-24 21:28:18 +000016; CHECK: .cprestore 65536
17
18 %agg.tmp = alloca %struct.S1, align 1
19 %tmp = getelementptr inbounds %struct.S1* %agg.tmp, i32 0, i32 0, i32 0
20 call void @llvm.memcpy.p0i8.p0i8.i32(i8* %tmp, i8* getelementptr inbounds (%struct.S1* @s1, i32 0, i32 0, i32 0), i32 65536, i32 1, i1 false)
21 call void @f2(%struct.S1* byval %agg.tmp) nounwind
22 ret void
23}
24
25declare void @f2(%struct.S1* byval)
26
27declare void @llvm.memcpy.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind