Changeset be8bd88 for src/Parser/TypeData.h
- Timestamp:
- Mar 8, 2017, 3:22:50 PM (9 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:
- 031a2c95, 0e7ea335
- Parents:
- 87c3bef (diff), 6363ad1 (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/Parser/TypeData.h
r87c3bef rbe8bd88 10 10 // Created On : Sat May 16 15:18:36 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T hu Feb 23 17:14:46201713 // Update Count : 1 5812 // Last Modified On : Tue Mar 7 08:03:53 2017 13 // Update Count : 173 14 14 // 15 15 … … 76 76 DeclarationNode::Length length = DeclarationNode::NoLength; 77 77 DeclarationNode::BuiltinType builtintype = DeclarationNode::NoBuiltinType; 78 typedef std::bitset< DeclarationNode::No Qualifier >Qualifiers;79 Qualifiers qualifiers;78 typedef std::bitset< DeclarationNode::NoTypeQualifier > TypeQualifiers; 79 TypeQualifiers typeQualifiers; 80 80 DeclarationNode * forall; 81 81 … … 107 107 ReferenceToType * buildComAggInst( const TypeData *, std::list< Attribute * > attributes ); 108 108 ReferenceToType * buildAggInst( const TypeData * ); 109 NamedTypeDecl * buildSymbolic( const TypeData *, const std::string &name, DeclarationNode::StorageClass sc );110 109 TypeDecl * buildVariable( const TypeData * ); 111 110 EnumDecl * buildEnum( const TypeData *, std::list< Attribute * > ); … … 113 112 TupleType * buildTuple( const TypeData * ); 114 113 TypeofType * buildTypeof( const TypeData * ); 115 Declaration * buildDecl( const TypeData *, const std::string &, DeclarationNode::StorageClass , Expression *, bool isInline, bool isNoreturn, LinkageSpec::Spec, ConstantExpr *asmName, Initializer * init = nullptr, std::list< class Attribute * > attributes = std::list< class Attribute * >() );114 Declaration * buildDecl( const TypeData *, const std::string &, DeclarationNode::StorageClasses, Expression *, DeclarationNode::FuncSpecifiers funcSpec, LinkageSpec::Spec, ConstantExpr *asmName, Initializer * init = nullptr, std::list< class Attribute * > attributes = std::list< class Attribute * >() ); 116 115 FunctionType * buildFunction( const TypeData * ); 117 116 void buildKRFunction( const TypeData::Function_t & function );
Note:
See TracChangeset
for help on using the changeset viewer.