Lines Matching full:void
3 virtual void f(T) { }
4 inline void g() { }
9 // CHECK: define weak_odr void @_ZN1AIiE1gEv(
10 template void A<int>::g();
12 // CHECK: define weak_odr void @_ZN1AIfE1fEf(
13 // CHECK: define weak_odr void @_ZN1AIfE1gEv(
17 // CHECK: define weak_odr void @_Z1fIiEvT_
18 template <typename T> void f(T) { }
19 template void f<int>(int);
21 // CHECK: define weak_odr void @_Z1gIiEvT_
22 template <typename T> inline void g(T) { }
23 template void g<int>(int);
32 virtual void blarg();
35 template<typename T> void X1<T>::blarg() { }
40 // CHECK: define linkonce_odr void @_ZN2X1IcED1Ev(%struct.X1* %this) unnamed_addr
41 void test_X1() {