Changeset 3c6e417 for src/SymTab
- Timestamp:
- Jun 20, 2019, 1:45:01 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 54dd994
- Parents:
- 1e5dedc4 (diff), c0f9efe (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. - Location:
- src/SymTab
- Files:
-
- 3 edited
-
Mangler.h (modified) (1 diff)
-
Validate.cc (modified) (1 diff)
-
Validate.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Mangler.h
r1e5dedc4 r3c6e417 101 101 using Mode = bitfield<mangle_flags>; 102 102 103 static inline Mode typeMode() { return NoOverrideable | Type; } 104 103 105 /// Mangle declaration name 104 106 std::string mangle( const ast::Node * decl, Mode mode = {} ); -
src/SymTab/Validate.cc
r1e5dedc4 r3c6e417 1367 1367 return addrExpr; 1368 1368 } 1369 1370 const ast::Type * validateType( const ast::Type * type, const ast::SymbolTable & symtab ) { 1371 #warning unimplemented 1372 (void)type; (void)symtab; 1373 assert(false); 1374 return nullptr; 1375 } 1369 1376 } // namespace SymTab 1370 1377 -
src/SymTab/Validate.h
r1e5dedc4 r3c6e417 22 22 class Type; 23 23 24 namespace ast { 25 class Type; 26 class SymbolTable; 27 } 28 24 29 namespace SymTab { 25 30 class Indexer; … … 28 33 void validate( std::list< Declaration * > &translationUnit, bool doDebug = false ); 29 34 void validateType( Type *type, const Indexer *indexer ); 35 36 const ast::Type * validateType( const ast::Type * type, const ast::SymbolTable & symtab ); 30 37 } // namespace SymTab 31 38
Note:
See TracChangeset
for help on using the changeset viewer.