Changeset 0f9e4403 for src/CodeGen/CodeGenerator.cc
- Timestamp:
- Apr 15, 2016, 12:03:11 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 29ad0ac
- Parents:
- c5833e8 (diff), 37f0da8 (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
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cc
rc5833e8 r0f9e4403 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Jan 25 21:22:00201613 // Update Count : 24 212 // Last Modified On : Wed Mar 2 17:32:16 2016 13 // Update Count : 243 14 14 // 15 15 … … 21 21 #include "Parser/ParseNode.h" 22 22 23 #include "SynTree/ Type.h"23 #include "SynTree/Declaration.h" 24 24 #include "SynTree/Expression.h" 25 25 #include "SynTree/Initializer.h" 26 26 #include "SynTree/Statement.h" 27 #include "SynTree/Type.h" 27 28 28 29 #include "Common/utility.h" … … 170 171 } 171 172 172 void CodeGenerator::visit( ContextDecl *aggregateDecl ) {}173 void CodeGenerator::visit( TraitDecl *aggregateDecl ) {} 173 174 174 175 void CodeGenerator::visit( TypedefDecl *typeDecl ) { … … 454 455 455 456 void CodeGenerator::visit( UntypedOffsetofExpr *offsetofExpr ) { 456 assert( false );457 assert( false && "UntypedOffsetofExpr should not reach code generation" ); 457 458 } 458 459 … … 463 464 output << ", " << mangleName( offsetofExpr->get_member() ); 464 465 output << ")"; 466 } 467 468 void CodeGenerator::visit( OffsetPackExpr *offsetPackExpr ) { 469 assert( false && "OffsetPackExpr should not reach code generation" ); 465 470 } 466 471
Note:
See TracChangeset
for help on using the changeset viewer.