[mlir][int-range] Limit xor int range inference to i1 (#116968)
[llvm-project.git] / llvm / test / Feature / testvarargs.ll
blobc480c1c77e3f5cc4e6086fca53b44f30abffe345
1 ; RUN: llvm-as < %s | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
6 declare i32 @printf(ptr, ...)   ;; Prototype for: int __builtin_printf(const char*, ...)
8 define i32 @testvarar() {
9         call i32 (ptr, ...) @printf( ptr null, i32 12, i8 42 )         ; <i32>:1 [#uses=1]
10         ret i32 %1