blob: df2ca4c18a0590847b810d5997c8c692d02f1757 [file] [log] [blame]
Duncan Sands1e92ec62010-11-04 21:16:46 +00001; RUN: llc < %s
2; PR7170
Duncan Sands1e92ec62010-11-04 21:16:46 +00003
4%big = type [131072 x i8]
5
6declare void @foo(%big* byval align 1)
7
8define void @bar(%big* byval align 1 %x) {
9 call void @foo(%big* byval align 1 %x)
10 ret void
11}