Changeset a9a259c for src/CodeGen
- Timestamp:
- Feb 25, 2016, 4:34:09 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:
- c14cff1
- Parents:
- ae42f2a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cc
rae42f2a ra9a259c 263 263 264 264 case OT_CTOR: 265 // it's just an optimization to disallow this, so for now let it through 266 // since it makes autogenerating constructors a lot easier 267 varExpr->accept( *this ); 268 output << "("; 269 genCommaList( applicationExpr->get_args().begin(), applicationExpr->get_args().end() ); 270 output << ")"; 271 265 272 // intrinsic constructors should never be called directly - they should be transformed back into Initializer nodes 266 assert(false);273 // assert(false); 267 274 break; 268 275
Note: See TracChangeset
for help on using the changeset viewer.