blob: df2ca4c18a0590847b810d5997c8c692d02f1757 [file] [log] [blame]
John Bauman66b8ab22014-05-06 15:57:45 -04001; RUN: llc < %s
2; PR7170
3
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}