
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
29 lines
760 B
C++
29 lines
760 B
C++
// RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
// PR12219
|
|
struct A { A(int); virtual ~A(); };
|
|
struct B : A { using A::A; ~B(); };
|
|
B::~B() {}
|
|
|
|
B b(123);
|
|
|
|
struct C { template<typename T> C(T); };
|
|
struct D : C { using C::C; };
|
|
D d(123);
|
|
|
|
// CHECK-LABEL: define void @_ZN1BD2Ev
|
|
// CHECK-LABEL: define void @_ZN1BD1Ev
|
|
// CHECK-LABEL: define void @_ZN1BD0Ev
|
|
|
|
// CHECK-LABEL: define linkonce_odr void @_ZN1BC1Ei(
|
|
// CHECK: call void @_ZN1BC2Ei(
|
|
|
|
// CHECK-LABEL: define linkonce_odr void @_ZN1DC1IiEET_(
|
|
// CHECK: call void @_ZN1DC2IiEET_(
|
|
|
|
// CHECK-LABEL: define linkonce_odr void @_ZN1DC2IiEET_(
|
|
// CHECK: call void @_ZN1CC2IiEET_(
|
|
|
|
// CHECK-LABEL: define linkonce_odr void @_ZN1BC2Ei(
|
|
// CHECK: call void @_ZN1AC2Ei(
|