Changeset 70a06f6 for src/CodeGen
- Timestamp:
- Apr 14, 2016, 4:13:10 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:
- 356189a
- Parents:
- db4ecc5 (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. - Location:
- src/CodeGen
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cc
rdb4ecc5 r70a06f6 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Mon Apr 11 15:30:52201612 // Last Modified On : Thu Apr 14 15:40:00 2016 13 13 // Update Count : 255 14 14 // … … 485 485 486 486 void CodeGenerator::visit( UntypedOffsetofExpr *offsetofExpr ) { 487 assert( false );487 assert( false && "UntypedOffsetofExpr should not reach code generation" ); 488 488 } 489 489 … … 494 494 output << ", " << mangleName( offsetofExpr->get_member() ); 495 495 output << ")"; 496 } 497 498 void CodeGenerator::visit( OffsetPackExpr *offsetPackExpr ) { 499 assert( false && "OffsetPackExpr should not reach code generation" ); 496 500 } 497 501 -
src/CodeGen/CodeGenerator.h
rdb4ecc5 r70a06f6 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.