Changes in src/Virtual/ExpandCasts.cc [8f910430:b91bfde]
- File:
-
- 1 edited
-
src/Virtual/ExpandCasts.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Virtual/ExpandCasts.cc
r8f910430 rb91bfde 105 105 void VirtualCastCore::premutate( FunctionDecl * functionDecl ) { 106 106 if ( (! vcast_decl) && 107 functionDecl->get_name() == "__cfa vir_virtual_cast" ) {107 functionDecl->get_name() == "__cfa__virtual_cast" ) { 108 108 vcast_decl = functionDecl; 109 109 } … … 113 113 if ( pvt_decl || ! structDecl->has_body() ) { 114 114 return; 115 } else if ( structDecl->get_name() == "__cfa vir_type_info" ) {115 } else if ( structDecl->get_name() == "__cfa__parent_vtable" ) { 116 116 pvt_decl = structDecl; 117 117 }
Note:
See TracChangeset
for help on using the changeset viewer.