[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / Generic / 2010-ZeroSizedArg.ll
blob0a3c507cee7e6e20d65c7ba9c177da75b67bc4b7
1 ; RUN: llc < %s
2 ; PR4975
4 ; NVPTX does not support zero sized type arg
5 ; UNSUPPORTED: target=nvptx{{.*}}
7 %0 = type <{ [0 x i32] }>
8 %union.T0 = type { }
10 @.str = private constant [1 x i8] c" "
12 define void @t(%0) nounwind {
13 entry:
14   %arg0 = alloca %union.T0
15   store %0 %0, ptr %arg0, align 1
16   ret void
19 declare i32 @printf(ptr, ...)