blob: ecb354ed175e74cfab42578e36bb09cf7cc9ac53 [file] [log] [blame]
Duncan Sands1e92ec62010-11-04 21:16:46 +00001; RUN: llc < %s
2; PR7170
Dan Gohmanb1161422011-09-03 00:14:24 +00003; XFAIL: arm
Duncan Sands1e92ec62010-11-04 21:16:46 +00004
5%big = type [131072 x i8]
6
7declare void @foo(%big* byval align 1)
8
9define void @bar(%big* byval align 1 %x) {
10 call void @foo(%big* byval align 1 %x)
11 ret void
12}