summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Generic/2010-11-04-BigByval.ll
blob: ecb354ed175e74cfab42578e36bb09cf7cc9ac53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llc < %s
; PR7170
; XFAIL: arm

%big = type [131072 x i8]

declare void @foo(%big* byval align 1)

define void @bar(%big* byval align 1 %x) {
  call void @foo(%big* byval align 1 %x)
  ret void
}