blob: fd7ae9e0ac20df4091ae24c5a69b8fa769b62661 [file] [log] [blame]
Akira Hatanaka9ad65ae2011-05-24 21:28:18 +00001; RUN: llc -march=mipsel -mcpu=4ke < %s | FileCheck %s
2
3%struct.S1 = type { [65536 x i8] }
4
5@s1 = external global %struct.S1
6
7define void @f() nounwind {
8entry:
9; CHECK: lui $at, 65534
10; CHECK: addu $at, $sp, $at
Akira Hatanaka5e069032011-06-02 01:03:14 +000011; CHECK: addiu $sp, $at, -16
Akira Hatanaka9ad65ae2011-05-24 21:28:18 +000012; CHECK: .cprestore 65536
13
14 %agg.tmp = alloca %struct.S1, align 1
15 %tmp = getelementptr inbounds %struct.S1* %agg.tmp, i32 0, i32 0, i32 0
16 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)
17 call void @f2(%struct.S1* byval %agg.tmp) nounwind
18 ret void
19}
20
21declare void @f2(%struct.S1* byval)
22
23declare void @llvm.memcpy.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind