blob: 613b28c736f0898b9e56e44de53bf9a151ef9a81 [file] [log] [blame]
// RUN: %clang_cc1 -Wno-error=non-pod-varargs -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s
struct X {
X();
X(const X&);
~X();
};
void vararg(...);
// CHECK-LABEL: define void @_Z4test1X
void test(X x) {
// CHECK: call void @llvm.trap()
vararg(x);
// CHECK: ret void
}