Changeset 66f8528 for src/Parser/ParseNode.h
- Timestamp:
- Dec 15, 2016, 5:16:42 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:
- 43385ca, f7ff3fb
- Parents:
- 5802a4f (diff), 596f987b (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/ParseNode.h
r5802a4f r66f8528 10 10 // Created On : Sat May 16 13:28:16 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Oct 3 18:03:08201613 // Update Count : 6 3612 // Last Modified On : Tue Dec 13 15:37:33 2016 13 // Update Count : 643 14 14 // 15 15 … … 154 154 Expression * build_constantFloat( const std::string &str ); 155 155 Expression * build_constantChar( const std::string &str ); 156 Expression * build_constantZeroOne( const std::string &str ); 156 157 ConstantExpr * build_constantStr( const std::string &str ); 157 158 Expression * build_field_name_FLOATINGconstant( const std::string & str ); … … 204 205 enum Aggregate { Struct, Union, Trait, NoAggregate }; 205 206 enum TypeClass { Otype, Dtype, Ftype, NoTypeClass }; 206 enum BuiltinType { Valist };207 enum BuiltinType { Valist, Zero, One, NoBuiltinType }; 207 208 208 209 static const char * storageName[]; … … 256 257 DeclarationNode * addAssertions( DeclarationNode * ); 257 258 DeclarationNode * addName( std::string * ); 259 DeclarationNode * addAsmName( ConstantExpr * ); 258 260 DeclarationNode * addBitfield( ExpressionNode * size ); 259 261 DeclarationNode * addVarArgs(); … … 308 310 TypeData * type; 309 311 StorageClass storageClass; 312 ExpressionNode * bitfieldWidth; 310 313 bool isInline, isNoreturn; 311 std::list< std::string > attributes;312 ExpressionNode * bitfieldWidth;313 314 std::unique_ptr<ExpressionNode> enumeratorValue; 314 InitializerNode * initializer;315 315 bool hasEllipsis; 316 316 LinkageSpec::Spec linkage; 317 ConstantExpr *asmName; 318 std::list< std::string > attributes; 319 InitializerNode * initializer; 317 320 bool extension = false; 318 321 std::string error;
Note:
See TracChangeset
for help on using the changeset viewer.