Changeset 5bc81e9 for src/SymTab
- Timestamp:
- Apr 23, 2024, 2:28:45 PM (22 months ago)
- Branches:
- master, stuck-waitfor-destruct
- Children:
- 566cc33, bab42de
- Parents:
- 58e2ce34 (diff), 4a3eb1c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/SymTab/Mangler.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Mangler.cc
r58e2ce34 r5bc81e9 283 283 postvisit( enumAttr->instance ); 284 284 // mangleName += "_pos"; 285 switch ( enumAttr->attr )286 {287 case ast::EnumAttribute::Label:288 mangleName += "_label_";289 break;290 case ast::EnumAttribute::Posn:285 switch ( enumAttr->attr ) 286 { 287 case ast::EnumAttribute::Label: 288 mangleName += "_label_"; 289 break; 290 case ast::EnumAttribute::Posn: 291 291 mangleName += "_posn_"; 292 break;293 case ast::EnumAttribute::Value:294 mangleName += "_value_";295 break;296 }292 break; 293 case ast::EnumAttribute::Value: 294 mangleName += "_value_"; 295 break; 296 } 297 297 298 298 }
Note:
See TracChangeset
for help on using the changeset viewer.