Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:x1

18 struct X1 {
28 inline void X1<T>::f3() { }
31 inline void X1<int>::f4() { }
37 extern template struct X1<float>;
39 void use(X0 *x0, X1<int> *x1, X2 *x2, X1<float> *x3) {
51 x1->f1();
53 x1->f2();
55 x1->f3();
57 x1->f4();
59 X1<int>::f5();
61 x1->X1::f6();