Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / DeadArgElim / 2008-01-16-VarargsParamAttrs.ll
blobfa1c91d8ad4927bf4cee0a511bb7c0a49c9319be
1 ; RUN: opt < %s -passes=deadargelim -S | grep byval
3         %struct.point = type { double, double }
4 @pts = global [4 x %struct.point] [ %struct.point { double 1.000000e+00, double 2.000000e+00 }, %struct.point { double 3.000000e+00, double 4.000000e+00 }, %struct.point { double 5.000000e+00, double 6.000000e+00 }, %struct.point { double 7.000000e+00, double 8.000000e+00 } ], align 32          ; <ptr> [#uses=1]
6 define internal i32 @va1(i32 %nargs, ...) {
7 entry:
8         %pi = alloca %struct.point              ; <ptr> [#uses=0]
9         %args = alloca ptr              ; <ptr> [#uses=2]
10         %"alloca point" = bitcast i32 0 to i32          ; <i32> [#uses=0]
11         call void @llvm.va_start( ptr %args )
12         call void @llvm.va_end( ptr %args )
13         ret i32 undef
16 declare void @llvm.va_start(ptr) nounwind
18 declare void @llvm.va_end(ptr) nounwind
20 define i32 @main() {
21 entry:
22         %"alloca point" = bitcast i32 0 to i32          ; <i32> [#uses=0]
23         %tmp = getelementptr [4 x %struct.point], ptr @pts, i32 0, i32 0                ; <ptr> [#uses=1]
24         %tmp1 = call i32 (i32, ...) @va1(i32 1, ptr byval(%struct.point) %tmp) nounwind                 ; <i32> [#uses=0]
25         call void @exit( i32 0 ) noreturn nounwind
26         unreachable
29 declare void @exit(i32) noreturn nounwind