Changeset a08ba92 for translator/CodeGen
- Timestamp:
- May 19, 2015, 4:58:14 PM (11 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:
- 843054c2
- Parents:
- 01aeade
- File:
-
- 1 edited
-
translator/CodeGen/GenType.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
translator/CodeGen/GenType.cc
r01aeade ra08ba92 122 122 } 123 123 124 void GenType::visit( ArrayType *arrayType ) {124 void GenType::visit( ArrayType *arrayType ) { 125 125 genArray( arrayType->get_qualifiers(), arrayType->get_base(), arrayType->get_dimension(), arrayType->get_isVarLen(), arrayType->get_isStatic() ); 126 126 } … … 153 153 cg.genCommaList( pars.begin(), pars.end() ); 154 154 155 if ( funcType->get_isVarArgs() ) {155 if ( funcType->get_isVarArgs() ) { 156 156 os << ", ..."; 157 157 } // if
Note:
See TracChangeset
for help on using the changeset viewer.