- Timestamp:
- Jun 28, 2018, 12:39:08 PM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 15f5c5e
- Parents:
- 450805a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Mangler.cc
r450805a re73becf 60 60 void postvisit( ZeroType * zeroType ); 61 61 void postvisit( OneType * oneType ); 62 void postvisit( QualifiedType * qualType ); 62 63 63 64 std::string get_mangleName() { return mangleName.str(); } … … 171 172 "w", // SignedInt128 172 173 "Uw", // UnsignedInt128 173 "x", 174 "y", 174 "x", // Float80 175 "y", // Float128 175 176 }; 176 177 static_assert( … … 312 313 void Mangler::postvisit( OneType * ) { 313 314 mangleName << "O"; 315 } 316 317 void Mangler::postvisit( QualifiedType * qualType ) { 318 maybeAccept( qualType->parent, *visitor ); 319 mangleName << "__"; 320 maybeAccept( qualType->child, *visitor ); 314 321 } 315 322
Note: See TracChangeset
for help on using the changeset viewer.