Revert r129875, XFAILing this test for arm, since the fix was reverted.
[oota-llvm.git] / test / CodeGen / Generic / 2010-11-04-BigByval.ll
1 ; RUN: llc < %s
2 ; PR7170
3 ; XFAIL: arm
4
5 %big = type [131072 x i8]
6
7 declare void @foo(%big* byval align 1)
8
9 define void @bar(%big* byval align 1 %x) {
10   call void @foo(%big* byval align 1 %x)
11   ret void
12 }