// RUN: %clang_cc1 -std=c++11 -emit-llvm %s -o - -triple=x86_64-apple-darwin9 | FileCheck %s namespace std { typedef decltype(sizeof(int)) size_t; // libc++'s implementation template class initializer_list { const _E* __begin_; size_t __size_; initializer_list(const _E* __b, size_t __s) : __begin_(__b), __size_(__s) {} public: typedef _E value_type; typedef const _E& reference; typedef const _E& const_reference; typedef size_t size_type; typedef const _E* iterator; typedef const _E* const_iterator; initializer_list() : __begin_(nullptr), __size_(0) {} size_t size() const {return __size_;} const _E* begin() const {return __begin_;} const _E* end() const {return __begin_ + __size_;} }; } template < bool condition, typename T = void > struct enable_if { typedef T type; }; template< typename T > struct enable_if< false, T > {}; // PR5876 namespace Casts { template< unsigned O > void implicit(typename enable_if< O <= 4 >::type* = 0) { } template< unsigned O > void cstyle(typename enable_if< O <= (unsigned)4 >::type* = 0) { } template< unsigned O > void functional(typename enable_if< O <= unsigned(4) >::type* = 0) { } template< unsigned O > void static_(typename enable_if< O <= static_cast(4) >::type* = 0) { } template void reinterpret_(typename enable_if(0))>::type * = 0) { } template void const_(typename enable_if<0 <= sizeof(const_cast(p))>::type * = 0) { } template void dynamic_(typename enable_if<0 <= sizeof(dynamic_cast(p))>::type * = 0) { } template< typename T > void auto_(decltype(new auto(T()))) { } template< typename T > void scalar_(decltype(T(), int())) { } template struct T {}; template T f() { return T(); } extern int i; extern struct S {} s; // CHECK-LABEL: define weak_odr void @_ZN5Casts8implicitILj4EEEvPN9enable_ifIXleT_Li4EEvE4typeE template void implicit<4>(void*); // CHECK-LABEL: define weak_odr void @_ZN5Casts6cstyleILj4EEEvPN9enable_ifIXleT_cvjLi4EEvE4typeE template void cstyle<4>(void*); // CHECK-LABEL: define weak_odr void @_ZN5Casts10functionalILj4EEEvPN9enable_ifIXleT_cvjLi4EEvE4typeE template void functional<4>(void*); // CHECK-LABEL: define weak_odr void @_ZN5Casts7static_ILj4EEEvPN9enable_ifIXleT_scjLi4EEvE4typeE template void static_<4>(void*); // CHECK-LABEL: define weak_odr void @_ZN5Casts12reinterpret_ILj4EiEEvPN9enable_ifIXleT_szrcPT0_Li0EEvE4typeE template void reinterpret_<4, int>(void*); // CHECK-LABEL: define weak_odr void @_ZN5Casts6const_IiXadL_ZNS_1iEEEEEvPN9enable_ifIXleLi0EszccPT_T0_EvE4typeE template void const_(void*); // CHECK-LABEL: define weak_odr void @_ZN5Casts8dynamic_INS_1SEXadL_ZNS_1sEEEEEvPN9enable_ifIXleLi0EszdcPT_T0_EvE4typeE template void dynamic_(void*); // CHECK-LABEL: define weak_odr void @_ZN5Casts1fILi6EEENS_1TIXT_EEEv template T<6> f<6>(); // CHECK-LABEL: define weak_odr void @_ZN5Casts5auto_IiEEvDTnw_DapicvT__EEE( template void auto_(int*); // CHECK-LABEL: define weak_odr void @_ZN5Casts7scalar_IiEEvDTcmcvT__Ecvi_EE( template void scalar_(int); } namespace test1 { short foo(short); int foo(int); // CHECK-LABEL: define linkonce_odr signext i16 @_ZN5test11aIsEEDTcl3foocvT__EEES1_( template auto a(T t) -> decltype(foo(T())) { return foo(t); } // CHECK-LABEL: define linkonce_odr signext i16 @_ZN5test11bIsEEDTcp3foocvT__EEES1_( template auto b(T t) -> decltype((foo)(T())) { return (foo)(t); } void test(short s) { a(s); b(s); } } namespace test2 { template void a(T x, decltype(x()) y) {} template auto b(T x) -> decltype(x()) { return x(); } template void c(T x, void (*p)(decltype(x()))) {} template void d(T x, auto (*p)() -> decltype(x())) {} template void e(auto (*p)(T y) -> decltype(y())) {} template void f(void (*p)(T x, decltype(x()) y)) {} template void g(T x, decltype(x()) y) { static decltype(x()) variable; variable = 0; } template void h(T x, decltype((decltype(x())(*)()) 0) y) {} template void i(decltype((auto (*)(T x) -> decltype(x())) 0) y) {} float foo(); void bar(float); float baz(float(*)()); void fred(float(*)(), float); // CHECK-LABEL: define void @_ZN5test211instantiateEv void instantiate() { // CHECK: call void @_ZN5test21aIPFfvEEEvT_DTclfL0p_EE( a(foo, 0.0f); // CHECK: call float @_ZN5test21bIPFfvEEEDTclfp_EET_( (void) b(foo); // CHECK: call void @_ZN5test21cIPFfvEEEvT_PFvDTclfL1p_EEE( c(foo, bar); // CHECK: call void @_ZN5test21dIPFfvEEEvT_PFDTclfL0p_EEvE( d(foo, foo); // CHECK: call void @_ZN5test21eIPFfvEEEvPFDTclfp_EET_E( e(baz); // CHECK: call void @_ZN5test21fIPFfvEEEvPFvT_DTclfL0p_EEE( f(fred); // CHECK: call void @_ZN5test21gIPFfvEEEvT_DTclfL0p_EE( g(foo, 0.0f); // CHECK: call void @_ZN5test21hIPFfvEEEvT_DTcvPFDTclfL0p_EEvELi0EE( h(foo, foo); // CHECK: call void @_ZN5test21iIPFfvEEEvDTcvPFDTclfp_EET_ELi0EE( i(baz); } // CHECK: store float {{.*}}, float* @_ZZN5test21gIPFfvEEEvT_DTclfL0p_EEE8variable, } namespace test3 { template void a(T x, U y, decltype(x.*y) z) {} struct X { int *member; }; // CHECK-LABEL: define void @_ZN5test311instantiateEv void instantiate() { X x; int *ip; // CHECK: call void @_ZN5test31aINS_1XEMS1_PiEEvT_T0_DTdsfL0p_fL0p0_E a(x, &X::member, ip); } } namespace test4 { struct X { X(int); }; template void tf1(decltype(new T(1)) p) {} template void tf2(decltype(new T({1})) p) {} template void tf3(decltype(new T{1}) p) {} // CHECK: void @_ZN5test43tf1INS_1XEEEvDTnw_T_piLi1EEE template void tf1(X*); // CHECK: void @_ZN5test43tf2INS_1XEEEvDTnw_T_piilLi1EEEE template void tf2(X*); // CHECK: void @_ZN5test43tf3INS_1XEEEvDTnw_T_ilLi1EEE template void tf3(X*); } namespace test5 { template void a(decltype(noexcept(T()))) {} template void a(decltype(noexcept(int()))); // CHECK: void @_ZN5test51aIiEEvDTnxcvT__EE( } namespace test6 { struct X { int i; }; struct Y { union { int i; }; }; struct Z { union { X ua; Y ub; }; struct { X s; }; union { union { struct { struct { X uuss; }; }; }; }; }; Z z, *zp; template void f1(decltype(T(z.ua.i))) {} template void f1(int); // CHECK-LABEL: define weak_odr void @_ZN5test62f1IiEEvDTcvT_dtdtL_ZNS_1zEE2ua1iE template void f2(decltype(T(z.ub.i))) {} template void f2(int); // CHECK-LABEL: define weak_odr void @_ZN5test62f2IiEEvDTcvT_dtdtL_ZNS_1zEE2ub1iE template void f3(decltype(T(z.s.i))) {} template void f3(int); // CHECK-LABEL: define weak_odr void @_ZN5test62f3IiEEvDTcvT_dtdtL_ZNS_1zEE1s1iE template void f4(decltype(T(z.uuss.i))) {} template void f4(int); // CHECK-LABEL: define weak_odr void @_ZN5test62f4IiEEvDTcvT_dtdtL_ZNS_1zEE4uuss1iE template void f5(decltype(T(zp->ua.i))) {} template void f5(int); // CHECK-LABEL: define weak_odr void @_ZN5test62f5IiEEvDTcvT_dtptL_ZNS_2zpEE2ua1iE template void f6(decltype(T(zp->ub.i))) {} template void f6(int); // CHECK-LABEL: define weak_odr void @_ZN5test62f6IiEEvDTcvT_dtptL_ZNS_2zpEE2ub1iE template void f7(decltype(T(zp->s.i))) {} template void f7(int); // CHECK-LABEL: define weak_odr void @_ZN5test62f7IiEEvDTcvT_dtptL_ZNS_2zpEE1s1iE template void f8(decltype(T(zp->uuss.i))) {} template void f8(int); // CHECK-LABEL: define weak_odr void @_ZN5test62f8IiEEvDTcvT_dtptL_ZNS_2zpEE4uuss1iE }