summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/vararg-non-pod.cpp
blob: 36891a4d28c8ba409fd2f6bdc1ebf456f81114d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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
}
OpenPOWER on IntegriCloud