Changeset 44b7088 for src/CodeGen/GenType.cc
- Timestamp:
- Feb 25, 2016, 5:03:36 PM (7 years ago)
- Branches:
- aaron-thesis, arm-eh, 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:
- ac1ed49, d09c421
- Parents:
- 91b8a17
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/GenType.cc
r91b8a17 r44b7088 39 39 virtual void visit( EnumInstType *enumInst ); 40 40 virtual void visit( TypeInstType *typeInst ); 41 virtual void visit( VarArgsType *varArgsType ); 41 42 42 43 private: … … 191 192 } 192 193 194 void GenType::visit( VarArgsType *varArgsType ) { 195 typeString = "__builtin_va_list " + typeString; 196 // don't handle qualifiers, var args pack shouldn't have any 197 } 198 193 199 void GenType::handleQualifiers( Type *type ) { 194 200 if ( type->get_isConst() ) {
Note: See TracChangeset
for help on using the changeset viewer.