Changeset 32cab5b for src/CodeGen/CodeGenerator.cc
- Timestamp:
- Apr 17, 2018, 12:01:09 PM (7 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, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, with_gc
- Children:
- 3265399
- Parents:
- b2fe1c9 (diff), 81bb114 (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
rb2fe1c9 r32cab5b 203 203 204 204 void CodeGenerator::handleAggregate( AggregateDecl * aggDecl, const std::string & kind ) { 205 genAttributes( aggDecl->get_attributes() );206 207 205 if( ! aggDecl->get_parameters().empty() && ! genC ) { 208 206 // assertf( ! genC, "Aggregate type parameters should not reach code generation." ); … … 213 211 } 214 212 215 output << kind << aggDecl->get_name(); 213 output << kind; 214 genAttributes( aggDecl->get_attributes() ); 215 output << aggDecl->get_name(); 216 216 217 217 if ( aggDecl->has_body() ) { … … 298 298 output << " }"; 299 299 } 300 } 301 302 void CodeGenerator::postvisit( StaticAssertDecl * assertDecl ) { 303 output << "_Static_assert("; 304 assertDecl->condition->accept( *visitor ); 305 output << ", "; 306 assertDecl->message->accept( *visitor ); 307 output << ")"; 300 308 } 301 309 … … 928 936 output << "continue"; 929 937 break; 938 case BranchStmt::FallThrough: 939 case BranchStmt::FallThroughDefault: 940 assertf( ! genC, "fallthru should not reach code generation." ); 941 output << "fallthru"; 942 break; 930 943 } // switch 944 // print branch target for labelled break/continue/fallthru in debug mode 945 if ( ! genC && branchStmt->get_type() != BranchStmt::Goto ) { 946 if ( ! branchStmt->get_target().empty() ) { 947 output << " " << branchStmt->get_target(); 948 } else if ( branchStmt->get_type() == BranchStmt::FallThrough ) { 949 output << " default"; 950 } 951 } 931 952 output << ";"; 932 953 }
Note:
See TracChangeset
for help on using the changeset viewer.