Changeset 4c2e561 for src/SymTab
- Timestamp:
- Jul 4, 2023, 4:29:10 PM (2 years ago)
- Branches:
- master
- Children:
- 3430ce8
- Parents:
- 3397eed (diff), 7f1be01 (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/SymTab/FixFunction.cc
r3397eed r4c2e561 109 109 110 110 const ast::DeclWithType * postvisit( const ast::FunctionDecl * func ) { 111 return new ast::ObjectDecl{ 112 func->location, func->name, new ast::PointerType{ func->type }, nullptr, 111 // Cannot handle cases with asserions. 112 assert( func->assertions.empty() ); 113 return new ast::ObjectDecl{ 114 func->location, func->name, new ast::PointerType( func->type ), nullptr, 113 115 func->storage, func->linkage, nullptr, copy( func->attributes ) }; 114 116 } … … 117 119 118 120 const ast::Type * postvisit( const ast::ArrayType * array ) { 119 return new ast::PointerType{ 120 array->base, array->dimension, array->isVarLen, array->isStatic, 121 return new ast::PointerType{ 122 array->base, array->dimension, array->isVarLen, array->isStatic, 121 123 array->qualifiers }; 122 124 }
Note:
See TracChangeset
for help on using the changeset viewer.