Changeset afc1045 for src/CodeGen
- Timestamp:
 - Apr 5, 2016, 3:31:09 PM (10 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, string, with_gc
 - Children:
 - d75038c
 - Parents:
 - b3f9a0cb
 - Location:
 - src/CodeGen
 - Files:
 - 
      
- 2 edited
 
- 
          
  CodeGenerator.cc (modified) (2 diffs)
 - 
          
  CodeGenerator.h (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
src/CodeGen/CodeGenerator.cc
rb3f9a0cb rafc1045 455 455 456 456 void CodeGenerator::visit( UntypedOffsetofExpr *offsetofExpr ) { 457 assert( false );457 assert( false && "UntypedOffsetofExpr should not reach code generation" ); 458 458 } 459 459 … … 464 464 output << ", " << mangleName( offsetofExpr->get_member() ); 465 465 output << ")"; 466 } 467 468 void CodeGenerator::visit( OffsetPackExpr *offsetPackExpr ) { 469 assert( false && "OffsetPackExpr should not reach code generation" ); 466 470 } 467 471  - 
      
src/CodeGen/CodeGenerator.h
rb3f9a0cb rafc1045 65 65 virtual void visit( UntypedOffsetofExpr *offsetofExpr ); 66 66 virtual void visit( OffsetofExpr *offsetofExpr ); 67 virtual void visit( OffsetPackExpr *offsetPackExpr ); 67 68 virtual void visit( LogicalExpr *logicalExpr ); 68 69 virtual void visit( ConditionalExpr *conditionalExpr );  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.