Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:Empty

7 struct Empty;
9 struct Empty {
10 Empty(const Empty &e);
14 bool foo(Empty e) {
15 // CHECK: @_Z3foo5Empty(%struct.Empty* %e)
16 // CHECK: call {{.*}} @_ZN5Empty5checkEv(%struct.Empty* %e)
20 void caller(Empty &e) {
21 // CHECK: @_Z6callerR5Empty(%struct.Empty* %e)
22 // CHECK: call {{.*}} @_ZN5EmptyC1ERKS_(%struct.Empty* [[NEWTMP:%.*]], %struct.Empty*
23 // CHECK: call {{.*}} @_Z3foo5Empty(%struct.Empty* [[NEWTMP]])