1 // RUN: %llvmgxx -S -emit-llvm %s -o - | FileCheck %s
5 // test1 should be compmiled to be a varargs function in the IR even
6 // though there is no way to do a va_begin. Otherwise, the optimizer
7 // will warn about 'dropped arguments' at the call site.
9 // CHECK: define i32 @_Z5test1z(...)
14 // CHECK: call i32 (...)* @_Z5test1z(i32 0)