Home | History | Annotate | Download | only in Generic
      1 ; RUN: llc < %s
      2 ; PR7170
      3 
      4 %big = type [131072 x i8]
      5 
      6 declare void @foo(%big* byval align 1)
      7 
      8 define void @bar(%big* byval align 1 %x) {
      9   call void @foo(%big* byval align 1 %x)
     10   ret void
     11 }
     12