Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:Field

40 // and Field's destructor body is also trivial.
41 struct Field {
42 ~Field() { }
49 Field field;
62 // Check that we do initialize the vtable pointer in A::~A(), since Field's destructor body
67 struct Field {
68 ~Field() { f(); }
75 Field field;
88 // Check that we do initialize the vtable pointer in A::~A(), since Field's destructor isn't
91 struct Field {
92 ~Field();
99 Field field;
112 // Check that we do initialize the vtable pointer in A::~A(), since Field has a member
119 struct Field {
127 Field field;
140 // Check that we do initialize the vtable pointer in A::~A(), since Field has a base
147 struct Field : NonTrivialDestructorBody { };
153 Field field;
166 // Check that we do initialize the vtable pointer in A::~A(), since Field has a virtual base
173 struct Field : virtual NonTrivialDestructorBody { };
179 Field field;