Changeset 6d4d1a6
- Timestamp:
- Dec 21, 2016, 2:45:22 PM (8 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, resolv-new, with_gc
- Children:
- 8bf784a
- Parents:
- da6dec23
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/GenType.cc
rda6dec23 r6d4d1a6 41 41 virtual void visit( EnumInstType *enumInst ); 42 42 virtual void visit( TypeInstType *typeInst ); 43 virtual void visit( TupleType * tupleType ); 43 44 virtual void visit( VarArgsType *varArgsType ); 44 45 virtual void visit( ZeroType *zeroType ); … … 197 198 } 198 199 200 void GenType::visit( TupleType * tupleType ) { 201 assertf( ! mangle, "Tuple types should not make it to Code Gen." ); 202 Visitor::visit( tupleType ); 203 } 204 199 205 void GenType::visit( VarArgsType *varArgsType ) { 200 206 typeString = "__builtin_va_list " + typeString;
Note: See TracChangeset
for help on using the changeset viewer.