Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / Generic / 2010-11-04-BigByval.ll
blob189b9319c3f508d43512942757b286979cf9f180
1 ; RUN: llc < %s
2 ; PR7170
4 ; The test is intentionally disabled only for the NVPTX target
5 ; (i.e. not for nvptx-registered-target feature) due to excessive runtime.
6 ; Please note, that there are NVPTX special testcases for "byval"
7 ; UNSUPPORTED: target=nvptx{{.*}}
9 ; AArch64 incorrectly nests ADJCALLSTACKDOWN/ADJCALLSTACKUP.
10 ; UNSUPPORTED: expensive_checks && target=aarch64{{.*}}
12 %big = type [131072 x i8]
14 declare void @foo(ptr byval(%big) align 1)
16 define void @bar(ptr byval(%big) align 1 %x) {
17   call void @foo(ptr byval(%big) align 1 %x)
18   ret void