]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/Mips/largeimmprinting.ll
Vendor import of llvm release_30 branch r142614:
[FreeBSD/FreeBSD.git] / test / CodeGen / Mips / largeimmprinting.ll
1 ; DISABLED: llc -march=mipsel -mcpu=4ke < %s | FileCheck %s
2 ; RUN: false
3
4 ; byval is currently unsupported.
5 ; XFAIL: *
6
7 %struct.S1 = type { [65536 x i8] }
8
9 @s1 = external global %struct.S1
10
11 define void @f() nounwind {
12 entry:
13 ; CHECK:  lui $at, 65534
14 ; CHECK:  addu  $at, $sp, $at
15 ; CHECK:  addiu $sp, $at, -24
16 ; 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
25 declare void @f2(%struct.S1* byval)
26
27 declare void @llvm.memcpy.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind